feat: add svelte web workspace shell

This commit is contained in:
2026-07-18 16:40:09 +08:00
parent 833d9f094f
commit a758996799
26 changed files with 3090 additions and 7 deletions

13
apps/web/vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [svelte()],
resolve: {
conditions: ['browser'],
},
test: {
environment: 'jsdom',
globals: true,
},
});