chore(website): create empty SvelteKit project

This commit is contained in:
Elian Doran
2025-06-14 11:05:38 +03:00
parent 297aef788c
commit c43a7df781
23 changed files with 1242 additions and 66 deletions

View File

@@ -0,0 +1,15 @@
import tailwindcss from '@tailwindcss/vite';
import { paraglideVitePlugin } from '@inlang/paraglide-js';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
tailwindcss(),
sveltekit(),
paraglideVitePlugin({
project: './project.inlang',
outdir: './src/lib/paraglide'
})
]
});