-
Notifications
You must be signed in to change notification settings - Fork 29
/
vite.config.ts
90 lines (87 loc) · 2.23 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import path from 'path';
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 Icons from 'unplugin-icons/vite';
import IconsResolver from 'unplugin-icons/resolver';
import { FileSystemIconLoader } from 'unplugin-icons/loaders';
import visualizer from 'rollup-plugin-visualizer';
import inject from '@rollup/plugin-inject';
const ELECTRON = process.env.ELECTRON || false;
const target = ['esnext'];
export default defineConfig({
base: ELECTRON ? path.resolve(__dirname, './dist') : undefined,
define: {
'process.env': process.env
},
plugins: [
vue(),
AutoImport({
imports: ['vue', 'vue-router', '@vueuse/core'],
dirs: ['./src/composables', './src/stores'],
eslintrc: {
enabled: true
}
}),
Components({
directoryAsNamespace: true,
resolvers: [
IconsResolver({
customCollections: ['c'],
alias: {
h: 'heroicons-outline',
s: 'heroicons-solid'
}
})
]
}),
visualizer({
filename: './dist/stats.html',
template: 'sunburst',
gzipSize: true
}),
Icons({
compiler: 'vue3',
iconCustomizer(collection, icon, props) {
props.width = '20px';
props.height = '20px';
},
customCollections: {
c: FileSystemIconLoader('./src/assets/icons', svg =>
svg.replace(/^<svg /, '<svg fill="currentColor" ')
)
}
})
],
optimizeDeps: {
esbuildOptions: {
target
}
},
build: {
target,
commonjsOptions: {
include: [/node_modules/],
transformMixedEsModules: true
},
rollupOptions: {
plugins: [
inject({
Buffer: ['buffer', 'Buffer']
})
]
}
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
// polyfills
stream: path.resolve(__dirname, 'node_modules/stream-browserify'),
events: path.resolve(__dirname, 'node_modules/events'),
util: path.resolve(__dirname, 'node_modules/util'),
buffer: path.resolve(__dirname, 'node_modules/buffer')
},
dedupe: ['@popperjs/core']
}
});