-
Notifications
You must be signed in to change notification settings - Fork 8
/
vite.config.ts
51 lines (50 loc) · 1.25 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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import topLevelAwait from "vite-plugin-top-level-await";
import { nodePolyfills } from "vite-plugin-node-polyfills";
import { viteCommonjs } from "@originjs/vite-plugin-commonjs";
import wasm from "vite-plugin-wasm";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
"stream/web": "web-streams-polyfill/ponyfill/es6",
stream: "stream-browserify",
"node-fetch": "whatwg-fetch",
},
},
plugins: [
viteCommonjs(),
react(),
nodePolyfills({
protocolImports: true,
globals: {
Buffer: true,
global: true,
process: true,
},
}),
wasm(),
topLevelAwait(),
],
optimizeDeps: {
esbuildOptions: {
target: "ES2022",
},
exclude: ["lucid-cardano"],
},
server: {
port: 3000,
},
build: {
target: "ES2022",
},
define: {
"import.meta.env.SERVER_URL": JSON.stringify(process.env.SERVER_URL),
"import.meta.env.REGION": JSON.stringify(process.env.REGION),
"import.meta.env.CABINET_KEY": JSON.stringify(process.env.CABINET_KEY),
"import.meta.env.PERSISTENT_SESSION": JSON.stringify(
process.env.PERSISTENT_SESSION
),
},
});