diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-21 21:56:55 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-21 21:56:55 +0300 |
| commit | c735556726e75428550a3d28a2cf58e2c8490b7d (patch) | |
| tree | fd0ae29d1636b825abeedff6b99d3376bb383135 /src/config.yaml | |
Initial template
Diffstat (limited to 'src/config.yaml')
| -rw-r--r-- | src/config.yaml | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/config.yaml b/src/config.yaml new file mode 100644 index 0000000..8dab37c --- /dev/null +++ b/src/config.yaml @@ -0,0 +1,72 @@ +site: + name: AstroWind + site: 'https://astrowind.vercel.app' + base: '/' + trailingSlash: false + + googleSiteVerificationId: orcPxI47GSa-cRvY11tUe6iGg2IO_RPvnA1q95iEM3M + +# Default SEO metadata +metadata: + title: + default: AstroWind + template: '%s — AstroWind' + description: "\U0001F680 Suitable for Startups, Small Business, Sass Websites, Professional Portfolios, Marketing Websites, Landing Pages & Blogs." + robots: + index: true + follow: true + openGraph: + site_name: AstroWind + images: + - url: '~/assets/images/default.png' + width: 1200 + height: 628 + type: website + twitter: + handle: '@onwidget' + site: '@onwidget' + cardType: summary_large_image + +i18n: + language: en + textDirection: ltr + +apps: + blog: + isEnabled: true + postsPerPage: 6 + + post: + isEnabled: true + permalink: '/%slug%' # Variables: %slug%, %year%, %month%, %day%, %hour%, %minute%, %second%, %category% + robots: + index: true + + list: + isEnabled: true + pathname: 'blog' # Blog main path, you can change this to "articles" (/articles) + robots: + index: true + + category: + isEnabled: true + pathname: 'category' # Category main path /category/some-category, you can change this to "group" (/group/some-category) + robots: + index: true + + tag: + isEnabled: true + pathname: 'tag' # Tag main path /tag/some-tag, you can change this to "topics" (/topics/some-category) + robots: + index: false + + isRelatedPostsEnabled: true + relatedPostsCount: 4 + +analytics: + vendors: + googleAnalytics: + id: null # or "G-XXXXXXXXXX" + +ui: + theme: 'system' # Values: "system" | "light" | "dark" | "light:only" | "dark:only" |
