-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
58 lines (57 loc) · 1.44 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { defineConfig, loadEnv } from 'vite';
import react from '@vitejs/plugin-react';
import svgrPlugin from '@arco-plugins/vite-plugin-svgr';
import vitePluginForArco from '@arco-plugins/vite-react';
import setting from './src/settings.json';
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd());
return {
resolve: {
alias: [{ find: '@', replacement: '/src' }],
},
plugins: [
react(),
svgrPlugin({
svgrOptions: {},
}),
vitePluginForArco({
theme: '@arco-themes/react-arco-pro',
modifyVars: {
'arcoblue-6': setting.themeColor,
},
}),
],
server: {
port: 8010,
proxy: {
'/api': {
target: `${env.VITE_API_URL}`,
changeOrigin: true,
// rewrite: path => path.replace(/^\/api/, '/'),
},
'/base': {
target: `${env.VITE_API_URL}`,
changeOrigin: true,
rewrite: (path) => path.replace(/^\/base/, ''),
},
'/dyapi': {
target: `http://121.89.237.232:28501`,
changeOrigin: true,
rewrite: (path) => {
const r = path.replace(/^\/dyapi/, '/');
console.log('r: ', r);
return r;
},
},
},
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
};
});