-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvite.config.js
More file actions
42 lines (40 loc) · 1.05 KB
/
vite.config.js
File metadata and controls
42 lines (40 loc) · 1.05 KB
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
import { sveltekit } from '@sveltejs/kit/vite';
import { NodeGlobalsPolyfillPlugin } from "@esbuild-plugins/node-globals-polyfill";
import inject from '@rollup/plugin-inject';
import nodePolyfills from "rollup-plugin-node-polyfills";
import path from 'path';
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()],
define: {
'process.env.BROWSER': true,
'process.env.NODE_DEBUG': JSON.stringify(''),
'process.env.VERSION': JSON.stringify(process.env.npm_package_version)
},
optimizeDeps: {
include: ['@solana/web3.js', 'buffer'],
esbuildOptions: {
target: 'esnext',
plugins: [NodeGlobalsPolyfillPlugin({ buffer: true })],
},
},
resolve: {
alias: {
$stores: path.resolve('./src/stores'),
stream: 'rollup-plugin-node-polyfills/polyfills/stream',
}
},
build: {
target: 'esnext',
commonjsOptions: {
transformMixedEsModules: true
},
rollupOptions: {
plugins: [inject({ Buffer: ['buffer', 'Buffer'] }), nodePolyfills({ crypto: true })],
},
},
server: {
host: true
}
};
export default config;