This commit is contained in:
2025-09-08 02:21:37 +02:00
parent 396c3c9b44
commit 0fe4bad133
40 changed files with 1159 additions and 164 deletions

15
app/vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
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: [
tailwindcss(),
sveltekit(),
paraglideVitePlugin({
project: './project.inlang',
outdir: './src/lib/paraglide'
})
]
});