Initial commit

This commit is contained in:
2025-03-24 16:28:02 +01:00
commit 79719c6762
26 changed files with 2853 additions and 0 deletions

15
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'
})
]
});