1
0

Setup Astro project and start working on placeholder page

This commit is contained in:
Michael Rieger
2025-09-11 15:59:12 +02:00
parent e11df7efb2
commit b5e812da0f
43 changed files with 1675 additions and 181 deletions
+9 -1
View File
@@ -1,5 +1,13 @@
// @ts-check
import { defineConfig } from 'astro/config';
import vue from '@astrojs/vue';
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [vue()],
i18n: {
locales: ["en", "de"],
defaultLocale: "en"
}
});