forked from beefyfinance/beefy-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
77 lines (73 loc) · 1.62 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
import { defineConfig } from 'vite';
import { NodeGlobalsPolyfillPlugin } from '@esbuild-plugins/node-globals-polyfill';
import RollupNodePolyFillPlugin from 'rollup-plugin-polyfill-node';
import react from '@vitejs/plugin-react';
import svgrPlugin from 'vite-plugin-svgr';
import eslint from 'vite-plugin-eslint';
import { visualizer } from 'rollup-plugin-visualizer';
import * as path from 'path';
const optionalPlugins = [];
if (process.env.NODE_ENV === 'development') {
optionalPlugins.push(eslint());
}
if (process.env.ANALYZE_BUNDLE) {
optionalPlugins.push(
visualizer({
template: 'treemap', // or treemap/sunburst
open: true,
gzipSize: true,
brotliSize: true,
filename: 'analyze.html',
})
);
}
// https://vitejs.dev/config/
export default defineConfig({
server: {
open: true,
},
plugins: [
react(),
{
...svgrPlugin(),
enforce: 'post',
},
...optionalPlugins,
],
optimizeDeps: {
esbuildOptions: {
define: { global: 'globalThis' },
plugins: [
NodeGlobalsPolyfillPlugin({
process: true,
buffer: true,
}),
],
},
},
build: {
outDir: 'build',
assetsInlineLimit: 0,
commonjsOptions: {
transformMixedEsModules: true,
},
rollupOptions: {
plugins: [RollupNodePolyFillPlugin()],
},
},
resolve: {
preserveSymlinks: true,
alias: [
{
find: /crypto-addr-codec/,
replacement: path.resolve(
__dirname,
'node_modules',
'crypto-addr-codec',
'dist',
'index.js'
),
},
],
},
});