Allow all hosts in Vite config for external access

This commit is contained in:
10x Developer 2026-05-04 21:40:08 +02:00
parent d46d0a5b54
commit 8b00801628

View file

@ -3,4 +3,8 @@ import react from '@vitejs/plugin-react'
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
server: {
host: true,
port: 3000
}
}) })