This commit is contained in:
2025-12-26 18:58:50 +08:00
parent f7ea3a5d6d
commit 7996896530

View File

@@ -13,9 +13,7 @@ const isDev = process.env.NODE_ENV === 'development';
let target = process.env.VITE_API_URL || 'http://localhost:51015'; let target = process.env.VITE_API_URL || 'http://localhost:51015';
const apiProxy = { target: target, changeOrigin: true, ws: true, rewriteWsOrigin: true, secure: false, cookieDomainRewrite: 'localhost' }; const apiProxy = { target: target, changeOrigin: true, ws: true, rewriteWsOrigin: true, secure: false, cookieDomainRewrite: 'localhost' };
let proxy = { let proxy = {
'/root/': { '/root/': apiProxy,
target: `${target}/root/`,
},
'/api': apiProxy, '/api': apiProxy,
'/client': apiProxy, '/client': apiProxy,
}; };
@@ -29,16 +27,17 @@ export default defineConfig({
// vue(), // vue(),
// sitemap(), // sitemap must be site has a domain // sitemap(), // sitemap must be site has a domain
], ],
server: {
port: 7008,
host: '0.0.0.0',
allowedHosts: true,
},
vite: { vite: {
plugins: [tailwindcss()], plugins: [tailwindcss()],
define: { define: {
BASE_NAME: JSON.stringify(basename || ''), BASE_NAME: JSON.stringify(basename || ''),
}, },
server: { server: {
port: 7008,
host: '0.0.0.0',
allowedHosts: true,
proxy, proxy,
}, },
}, },