feat: add Tailwind CSS and Skeleton UI integration, implement authentication flow, and configure API requests

This commit is contained in:
ethan.chen
2025-05-19 18:25:20 +08:00
parent 803f0d93ed
commit 811ed03a05
9 changed files with 1899 additions and 62 deletions

View File

@@ -4,4 +4,13 @@ import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
server: {
proxy: {
'/api': {
target: 'http://127.0.0.1:5000',
changeOrigin: true,
secure: false
}
}
}
})