12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import { fileURLToPath, URL } from 'node:url';
- import { defineConfig, loadEnv } from 'vite';
- import vue from '@vitejs/plugin-vue';
- const path = require('path');
- const common = path.resolve(__dirname, '../common');
- export default defineConfig(({ mode }) => {
- const env = loadEnv(mode, __dirname);
- return {
- // 静态路径
- base: env.VITE_BASE_URL,
- // 打包名称
- build: {
- outDir: env.VITE_OUT_DIR
- },
- plugins: [vue()],
- server: {
- port: 8001,
- proxy: {
- '/files': {
- target: 'http://broadcast.waityou24.cn'
- },
- '/zkzx/v2/question/api': {
- target: 'http://192.168.1.113:12004',
- changeOrigin: true,
- ws: false
- },
- '/zkzx/v2/achieve/api': {
- target: 'http://192.168.1.113:12003',
- changeOrigin: true,
- ws: false
- },
- '/zkzx/v2/patent/api': {
- target: 'http://192.168.1.113:12002',
- changeOrigin: true,
- ws: false
- },
- '/zkzx/v2/api': {
- target: 'http://192.168.1.113:12001',
- changeOrigin: true,
- ws: false
- }
- },
- fs: { strict: false }
- },
- resolve: {
- alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url)),
- '@common': common
- }
- }
- };
- });
|