Initial commit

This commit is contained in:
Lara 2025-01-25 15:25:28 +02:00
commit 8aed0c2352
29 changed files with 1476 additions and 0 deletions

17
vite.config.ts Normal file
View file

@ -0,0 +1,17 @@
import { paraglide } from '@inlang/paraglide-sveltekit/vite';
import { defineConfig } from 'vitest/config';
import { sveltekit } from '@sveltejs/kit/vite';
export default defineConfig({
plugins: [
sveltekit(),
paraglide({
project: './project.inlang',
outdir: './src/lib/paraglide'
})
],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
});