import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import path from 'path'; import tailwindcss from '@tailwindcss/vite'; import pkgs from './package.json' with { type: 'json' }; const version = pkgs.version || '0.0.1'; const isDev = process.env.NODE_ENV === 'development'; const basename = isDev ? '/' : pkgs?.basename || '/'; const plugins = [react(), tailwindcss() ]; // let target = 'https://kevisual.xiongxiao.me'; // if (isDev) { // target = 'https://kevisual.xiongxiao.me'; // } else { // target = 'https://kevisual.cn'; // } let target = 'http://localhost:3004'; let proxy = { '/root/system-lib/': { target: `${target}/root/system-lib/`, }, '/user/login/': { target: `${target}/user/login/`, }, '/api': { target: `${target}`, changeOrigin: true, ws: true, rewriteWsOrigin: true, }, }; /** * @see https://vitejs.dev/config/ */ export default defineConfig({ plugins, resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, base: basename, define: { DEV_SERVER: JSON.stringify(process.env.NODE_ENV === 'development'), VERSION: JSON.stringify(version), BASE_NAME: JSON.stringify(basename), 'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV), }, build: { target: 'modules', // lib: { // entry: './src/libs.ts', // formats: ['es'], // fileName: (format) => `render.js`, // }, }, server: { port: 7006, host: '0.0.0.0', proxy: { '/api': { target: 'http://localhost:3000', changeOrigin: true, ws: true, rewriteWsOrigin: true, rewrite: (path) => path.replace(/^\/api/, '/api'), }, '/api/router': { target: 'ws://localhost:3000', changeOrigin: true, ws: true, rewriteWsOrigin: true, rewrite: (path) => path.replace(/^\/api/, '/api'), }, ...proxy, }, }, });