Done implementing basic stay tuned site with robots.txt and sitemap
This commit is contained in:
+11
-3
@@ -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',
|
||||
});
|
||||
Reference in New Issue
Block a user