We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e16e1b commit 78342f1Copy full SHA for 78342f1
1 file changed
course-matrix/frontend/vite.config.ts
@@ -10,4 +10,10 @@ export default defineConfig({
10
"@": path.resolve(__dirname, "./src"),
11
},
12
13
+ server: {
14
+ host: "0.0.0.0", // Allow access from external devices
15
+ port: 5173, // Ensure it's using the correct port
16
+ strictPort: true, // Ensure it doesn't pick a different port if 5173 is in use
17
+ open: false, // Prevent auto-opening a browser on the server
18
+ },
19
});
0 commit comments