refactor: Move old components to old folders, start new website impl
This commit is contained in:
+16
-8
@@ -1,21 +1,29 @@
|
||||
// @ts-check
|
||||
import { defineConfig, passthroughImageService } from 'astro/config';
|
||||
import { defineConfig, passthroughImageService } from "astro/config";
|
||||
|
||||
import vue from '@astrojs/vue';
|
||||
import partytown from "@astrojs/partytown";
|
||||
import sitemap from "@astrojs/sitemap";
|
||||
import vue from "@astrojs/vue";
|
||||
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(), sitemap(), robotsTxt(), removeComments()],
|
||||
integrations: [
|
||||
vue(),
|
||||
sitemap(),
|
||||
robotsTxt(),
|
||||
partytown({
|
||||
config: {
|
||||
forward: ["$plausible", "$plausible.push"],
|
||||
},
|
||||
}),
|
||||
],
|
||||
i18n: {
|
||||
locales: ["en", "de"],
|
||||
defaultLocale: "en"
|
||||
defaultLocale: "en",
|
||||
},
|
||||
image: {
|
||||
service: passthroughImageService(),
|
||||
},
|
||||
site: 'https://tideshiftdigital.com',
|
||||
});
|
||||
site: "https://tideshiftdigital.com",
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user