restructure repo

This commit is contained in:
2025-03-17 21:48:21 +01:00
parent 833c396b9b
commit bbf66ddc74
160 changed files with 49 additions and 1163 deletions

17
apps/app/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}']
}
});