-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
39 lines (38 loc) · 1.02 KB
/
vite.config.js
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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { nodePolyfills } from "vite-plugin-node-polyfills";
export default defineConfig({
base: "/", // Ensure this is the root or subpath where the app is deployed
plugins: [
react(),
nodePolyfills({
protocolImports: true, // Enable polyfills for global and buffer
}),
],
resolve: {
alias: {
crypto: "crypto-browserify", // Alias crypto to the browser-compatible polyfill
buffer: "buffer", // Alias buffer to the browser-compatible polyfill
},
},
optimizeDeps: {
include: ["crypto-browserify", "buffer"], // Pre-bundle crypto-browserify
},
server: {
proxy: {
"/api": {
target: "https://app.mynearwallet.com",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
},
build: {
rollupOptions: {
input: "./index.html", // Use index.html as the entry point
},
outDir: "dist",
emptyOutDir: true,
sourcemap: false,
},
});