This commit is contained in:
2025-10-14 22:08:36 +08:00
parent 4a8ecabf07
commit c15621c808

View File

@@ -6,23 +6,17 @@ import pkgs from './package.json';
import tailwindcss from '@tailwindcss/vite';
const isDev = process.env.NODE_ENV === 'development';
const plugins = [tailwindcss()];
let target = process.env.VITE_API_URL || 'https://localhost:51015';
const apiProxy = { target: target, changeOrigin: true, ws: true, rewriteWsOrigin: true, secure: false, cookieDomainRewrite: 'localhost' };
let proxy = {
'/root/center/': {
target: `${target}/root/center/`,
},
'/user/login/': {
target: `${target}/user/login/`,
'/root/': {
target: `${target}/root/`,
},
'/api': apiProxy,
'/client': apiProxy,
};
export default defineConfig({
// ...
// site: 'https://kevisual.xiongxiao.me/root/astro',
base: isDev ? undefined : pkgs.basename,
integrations: [
mdx(),
@@ -31,10 +25,7 @@ export default defineConfig({
],
vite: {
plugins,
define: {
BASE_NAME: JSON.stringify(pkgs.basename),
},
plugins: [tailwindcss()],
server: {
port: 7008,
host: '0.0.0.0',