forked from snapshot-labs/sx-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
90 lines (87 loc) · 2.16 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 GlobalPolyFill from '@esbuild-plugins/node-globals-polyfill';
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 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({ reactivityTransform: true }),
AutoImport({
imports: ['vue', 'vue-router'],
dirs: ['./src/composables'],
eslintrc: {
enabled: true
}
}),
Components({
directoryAsNamespace: true,
resolvers: [
IconsResolver({
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';
}
})
],
optimizeDeps: {
include: ['@snapshot-labs/sx'],
esbuildOptions: {
target,
plugins: [
GlobalPolyFill({
buffer: true
})
]
}
},
build: {
target,
commonjsOptions: {
include: [/sx.js/, /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']
}
});