-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathvite.config.ts
33 lines (32 loc) · 988 Bytes
/
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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tsconfigPaths from 'vite-tsconfig-paths'
import svgr from 'vite-plugin-svgr'
import { NodeGlobalsPolyfillPlugin } from '@esbuild-plugins/node-globals-polyfill'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svgr(), react(), tsconfigPaths()],
build: {
commonjsOptions: { transformMixedEsModules: true, include: [] }
},
optimizeDeps: {
// this is needed because of js-sha256 & near-api-js library
// @see https://github.com/near/near-api-js/issues/1035
disabled: false,
esbuildOptions: {
// Node.js global to browser globalThis
define: {
global: 'globalThis'
},
// Enable esbuild polyfill plugins
plugins: [
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
NodeGlobalsPolyfillPlugin({
buffer: true,
process: true
})
]
}
}
})