1
0

refactor: Move old components to old folders, start new website impl

This commit is contained in:
2025-12-15 17:56:59 +01:00
parent 8e736906c1
commit 8ccad90484
21 changed files with 561 additions and 2120 deletions
+16 -8
View File
@@ -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",
});