Add Categories and Tags with new configs

This commit is contained in:
prototypa
2022-08-30 11:37:19 -04:00
parent 4859dcee87
commit 49c6c5611b
26 changed files with 434 additions and 217 deletions

View File

@ -1,12 +1,30 @@
export const SITE = {
name: "AstroWind",
domain: "https://astrowind.vercel.app",
baseUrl: "/",
title: "AstroWind — Your website with Astro + Tailwind CSS",
description: "🚀 AstroWind is a free and ready to start template to make your website using Astro and Tailwind CSS.",
postsPerPage: 6,
googleAnalyticsId: false, // or "G-XXXXXXXXXX",
googleSiteVerificationId: "orcPxI47GSa-cRvY11tUe6iGg2IO_RPvnA1q95iEM3M",
};
export const BLOG = {
disabled: false,
slug: "blog",
postsWithoutBlogSlug: true,
postsPerPage: 6,
category: {
disabled: false,
slug: "",
},
tag: {
disabled: false,
slug: "tag",
},
};