Update Vite configuration to enable host access and fix proxy server URL to use the current hostname.

This commit is contained in:
jazminliu
2025-03-20 22:04:59 +08:00
parent cedf02d152
commit 4fdbcee706
2 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,9 @@ import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {},
server: {
host: true,
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),