FE-0: Projektgrundgerüst (SvelteKit, Tailwind, Docker, Caddy)

This commit is contained in:
faligam
2026-09-06 06:26:03 +00:00
commit 631b17ae05
21 changed files with 441 additions and 0 deletions

18
vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
server: {
port: 3000,
strictPort: true,
host: '0.0.0.0',
proxy: {
'/api': {
target: 'http://nsct-api:8080',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
});