-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
69 lines (64 loc) · 1.79 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
65
66
67
68
69
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ArcoResolver } from 'unplugin-vue-components/resolvers'
import cssInjectedByJsPlugin from 'vite-plugin-css-injected-by-js'
var debugMode:any = false;
// https://vitejs.dev/config/
export default defineConfig({
define: { 'process.env': {
NODE_ENV:debugMode === true ? "development" : "production"}
},
plugins: [
vue(),
AutoImport({
resolvers: [ArcoResolver()]
}),
Components({
resolvers: [
ArcoResolver({
sideEffect: true
})
]
}),
cssInjectedByJsPlugin()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
proxy: {
// 本地开发环境通过代理实现跨域,生产环境使用 nginx 转发
// 正则表达式写法
'^/api': {
target: 'http://127.0.0.1:6806', // 后端服务实际地址
changeOrigin: true //开启代理
}
}
},
build: {
assetsDir: '',
outDir: 'math',
emptyOutDir: false,
lib: {
entry: 'src/main.ts',
formats: ['cjs'],
fileName: 'main'
},
rollupOptions: {
external: ['siyuan']
},
minify: debugMode === true ? false : "terser",
terserOptions: {
compress: {
// 生产环境时移除console
drop_console: true,
drop_debugger: true,
},
},
}
})