-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
69 lines (68 loc) · 1.37 KB
/
vite.config.js
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
/*
* @page:
* @Author: Orts
* @Date: 2021-12-09 09:37:00
* @LastEditTime: 2021-12-09 17:42:16
* @LastEditors: Orts
* @Description:
* @FilePath: /xlsx-in-vue3/vite.config.js
*/
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 {
ElementPlusResolver
} from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
],
css: {
preprocessorOptions: {
scss: {
charset: false
},
less: {
charset: false,
},
},
charset: false,
postcss: {
plugins: [{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove();
}
}
}
}],
},
},
base: "./",
build: {
outDir: 'docs',
chunkSizeWarningLimit: 2000,
rollupOptions: {
output: {
manualChunks: {
lodash: ['lodash'],
elementPlus: ['element-plus'],
xlsx: ['xlsx'],
xDataSpreadsheet: ['x-data-spreadsheet']
}
}
}
}
})