-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
64 lines (62 loc) · 1.91 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
59
60
61
62
63
64
import {defineConfig, loadEnv} from 'vite'
import vue from '@vitejs/plugin-vue'
import type {ConfigEnv} from 'vite'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import {ElementPlusResolver} from 'unplugin-vue-components/resolvers'
/**
* 如果编辑器提示 path 模块找不到,则可以安装一下 @types/node
* pnpm add -D @types/node
*/
import {resolve} from 'path'
import * as path from 'path'
// https://vitejs.dev/config/
export default defineConfig(({mode}: ConfigEnv) => {
const env = loadEnv(mode, process.cwd())
return {
plugins: [
vue(),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
],
define: {
'process.env': {
BASE_API: 'http://127.0.0.1:9999/house',
},
},
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
extensions: ['.js', '.vue'],
},
base: '/',
server: {
host: '0.0.0.0',
port: 3002, // 设置服务启动端口号
open: false, // 设置服务启动时是否自动打开浏览器
cors: true, // 允许跨域
proxy: {
'/api': {
target: process.env.BASE_API,
changeOrigin: true,
rewrite: (path) => path.replace(/^\/request/, ''),
},
},
},
css: {
preprocessorOptions: {
less: {
modifyVars: {
hack: `true; @import (reference) "${path.resolve('src/styles/base.less')}";`,
},
javascriptEnabled: true,
},
},
},
}
})