feat: initial commit of Vancouver Investment Fund web application

This commit is contained in:
sha
2025-06-20 13:53:19 +03:00
commit d1fa63d3c1
28 changed files with 3177 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
base: process.env.NODE_ENV === 'production' ? '/vancouver/' : '/',
build: {
outDir: 'dist',
assetsDir: 'assets',
sourcemap: false,
minify: 'terser',
},
server: {
host: true,
port: 5173,
watch: {
usePolling: true,
interval: 1000,
},
hmr: {
port: 5173,
},
}
})