added server config for local development

This commit is contained in:
2026-03-24 03:57:24 +01:00
parent 6df798c403
commit fd91198315
+5
View File
@@ -4,4 +4,9 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
allowedHosts: ['5173.code-server.kasuns.website'],
},
})