-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
61 lines (54 loc) · 1.41 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
import path from 'path'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import legacy from '@vitejs/plugin-legacy'
import vueJsx from '@vitejs/plugin-vue-jsx'
import { visualizer } from 'rollup-plugin-visualizer'
import Components from 'unplugin-vue-components/vite'
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers'
export default defineConfig(({ mode }) => {
const root = process.cwd()
const env = loadEnv(mode, root)
return {
base: env.VITE_APP_PUBLIC_PATH,
define: {
'process.env.VUE_APP_PUBLIC_PATH': JSON.stringify(env.VITE_APP_PUBLIC_PATH),
},
plugins: [
vue(),
vueJsx(),
visualizer(),
Components({
dts: true,
resolvers: [AntDesignVueResolver()],
types: [],
}),
legacy({
targets: ['defaults', 'not IE 11'],
}),
],
resolve: {
alias: {
'~@': path.join(__dirname, './src'),
'@': path.join(__dirname, './src'),
'~': path.join(__dirname, './src/assets'),
},
},
css: {
preprocessorOptions: {
less: {
modifyVars: {
'hack': 'true; @import "~/styles/variables.less";',
'root-entry-name': 'variable',
},
// DO NOT REMOVE THIS LINE
javascriptEnabled: true,
},
},
},
server: {
host: true,
port: 3066,
},
}
})