-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
49 lines (42 loc) · 1006 Bytes
/
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
/*
* @Author: rjz
* @Date: 2021-02-06 15:43:15
* @Last Modified by: rjz
* @Last Modified time: 2021-02-06 15:43:15
*/
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// const fs = require("fs")
import { resolve } from "path";
import * as path from 'path'
function pathResolve(dir: string) {
return resolve(__dirname, ".", dir);
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
// 服务端口
port: 9999,
host: "localhost",
proxy: {
'/api': {
target: 'http://www.baidu.com',
changeOrigin: true,
ws: true,
rewrite: path => path.replace(/^\/api/, ''),
}
}
},
alias: {
// ‘react‘: ‘@pika/react‘,
// ‘react-dom‘: ‘@pika/react-dom‘
'/@foo/': path.resolve(__dirname, 'src'),
foo: 'src'
// "/@/": pathResolve("src"),
},
// 配置Dep优化行为
optimizeDeps: {
// exclude: [‘dep-a‘, ‘dep-b‘],
},
})