-
Notifications
You must be signed in to change notification settings - Fork 10
/
vite.config.ts
39 lines (36 loc) · 1016 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
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
// 如果编辑器提示 path 模块找不到,则可以安装一下 @types/node -> pnpm add @types/node -D
import { resolve } from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), vueJsx()],
resolve: {
alias: {
'/@': resolve(__dirname, 'src'),
},
},
base: '/', // 设置打包路径
server: {
port: 3000, // 设置服务启动端口号
open: true, // 设置服务启动时是否自动打开浏览器
cors: true, // 允许跨域
// 设置代理,根据我们项目实际情况配置
// proxy: {
// '/api': {
// target: 'http://xxx.xxx.xxx.xxx:8000',
// changeOrigin: true,
// secure: false,
// rewrite: (path) => path.replace('/api/', '/')
// }
// }
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
});