Initial commit

This commit is contained in:
2025-10-06 18:11:03 +02:00
commit 93cd6872a9
404 changed files with 35324 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import { paraglideVitePlugin } from '@inlang/paraglide-js';
import tailwindcss from '@tailwindcss/vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
paraglideVitePlugin({
project: './project.inlang',
outdir: './src/paraglide',
strategy: ['cookie', 'preferredLanguage', 'baseLocale']
}),
tailwindcss(),
sveltekit()
],
server: {
host: '0.0.0.0',
port: 3000,
allowedHosts: true
},
preview: {
host: '0.0.0.0'
}
});