add solid-start support

This commit is contained in:
Gregor Lohaus
2026-04-15 22:56:25 +02:00
parent 462866b8f2
commit e35a038f09
453 changed files with 394 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
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' })
]
});