-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
45 lines (43 loc) · 1.29 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
import {defineConfig} from 'vite'
import {svelte} from '@sveltejs/vite-plugin-svelte'
import nodePolyfills from "rollup-plugin-polyfill-node"
import { splitVendorChunkPlugin } from 'vite'
import * as path from "path";
const production = process.env.NODE_ENV === "production";
// https://vitejs.dev/config/
export default defineConfig({
base: '',
plugins: [
splitVendorChunkPlugin(),
// ↓ Needed for development mode
!production &&
nodePolyfills({
include: ["node_modules/**/*.js", new RegExp("node_modules/.vite/.*js")]
}),
svelte()
],
build: {
rollupOptions: {
plugins: [
// ↓ Needed for build
nodePolyfills()
]
},
// ↓ Needed for build if using WalletConnect and other providers
commonjsOptions: {
transformMixedEsModules: true
}
},
resolve: {
alias: {
'~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap'),
/** browserify for web3 components */
stream: 'stream-browserify',
http: 'http-browserify',
https: 'http-browserify',
timers: 'timers-browserify',
process: 'process',
util: 'util'
},
},
})