chore(web): move the development server to port 7100

Use port 7100 for the local Vite server while retaining external host access.
This commit is contained in:
Maofeng
2026-08-08 21:14:37 +08:00
parent 6cd7d436ef
commit 2043c7d777
+1 -1
View File
@@ -31,6 +31,6 @@ export default defineConfig({
], ],
server: { server: {
host: "0.0.0.0", host: "0.0.0.0",
port: 31573, port: 7100,
}, },
}) })