chore(config): host the vite dev server on 0.0.0.0

This commit is contained in:
2025-05-10 01:19:33 -04:00
parent 297a93c666
commit 6d7282870d

View File

@@ -23,7 +23,7 @@ export default defineConfig(({mode}) => {
}, },
port: 5173, // Ensure this matches your WebStorm debug URL port: 5173, // Ensure this matches your WebStorm debug URL
open: true, // Automatically opens the browser open: true, // Automatically opens the browser
host: 'localhost', host: '0.0.0.0',
}, },
build: { build: {
sourcemap: true, // Enable source maps for debugging sourcemap: true, // Enable source maps for debugging