fix: Updated vite config to support docker port forwarding

This commit is contained in:
Auke Steenman 2025-07-21 19:11:29 +02:00
parent 6a34c3a6c2
commit e2be5ea5b8

@ -1,7 +1,11 @@
import { defineConfig } from 'vite' import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react' import react from '@vitejs/plugin-react';
// https://vite.dev/config/ // https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
}) server: {
host: '0.0.0.0',
port: 5173,
},
});