added port

This commit is contained in:
2026-03-27 18:39:08 +01:00
parent 7f5dcac1c3
commit 54d2380320
3 changed files with 8 additions and 4 deletions
View File
View File
+8 -4
View File
@@ -1,7 +1,11 @@
import { defineConfig } from 'vite' // vite.config.js
import react from '@vitejs/plugin-react' import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
}) server: {
host: '0.0.0.0', // listen on all network interfaces
port: 5173,
},
});