1
0

Done implementing basic stay tuned site with robots.txt and sitemap

This commit is contained in:
Michael Rieger
2025-09-16 19:00:56 +02:00
parent 5967768c25
commit 6832ad549e
18 changed files with 772 additions and 77 deletions
+11 -3
View File
@@ -1,13 +1,21 @@
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig, passthroughImageService } from 'astro/config';
import vue from '@astrojs/vue';
import sitemap from "@astrojs/sitemap";
import robotsTxt from "astro-robots-txt";
import aiRobotsTxt from "astro-ai-robots-txt";
import removeComments from "astro-remove-comments";
// https://astro.build/config
export default defineConfig({
integrations: [vue()],
integrations: [vue(), sitemap(), robotsTxt(), aiRobotsTxt(), removeComments()],
i18n: {
locales: ["en", "de"],
defaultLocale: "en"
}
},
image: {
service: passthroughImageService(),
},
site: 'https://tideshiftdigital.com',
});