-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.js
45 lines (40 loc) · 1.15 KB
/
webpack.dev.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
40
41
42
43
44
45
const path = require("path");
require("dotenv").config();
const { merge } = require("webpack-merge");
const common = require("./webpack.common.js");
const sdkEnv = process.env.sdkEnv ?? "local";
const endpointMap = {
prod: "https://api.hyperswitch.io/payments",
sandbox: "https://sandbox.hyperswitch.io/payments",
integ: "https://integ-api.hyperswitch.io/payments",
local: "https://sandbox.hyperswitch.io/payments", // Default or local environment endpoint
};
const backendEndPoint = endpointMap[sdkEnv] || endpointMap.local;
const devServer = {
contentBase: path.join(__dirname, "dist"),
hot: true,
host: "0.0.0.0",
port: 9050,
historyApiFallback: true,
proxy: {
"/payments": {
target: backendEndPoint,
changeOrigin: true,
secure: true,
pathRewrite: { "^/payments": "" },
},
// * Uncomment the following if needed for 3DS method proxying
// "/3dsmethod": {
// target: "https://acs40.sandbox.3dsecure.io",
// changeOrigin: true,
// secure: false,
// },
},
headers: {
"Cache-Control": "must-revalidate",
},
};
module.exports = merge(common(), {
mode: "development",
devServer,
});