mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
production config
This commit is contained in:
@@ -20,6 +20,9 @@ module.exports = (env, args) => {
|
||||
let settings = {}
|
||||
if (env && env.env) {
|
||||
switch (env.env) {
|
||||
case "production":
|
||||
settings = require("./src/configs/production/app-settings.json");
|
||||
break;
|
||||
case "testing":
|
||||
settings = require("./src/configs/testing/app-settings.json");
|
||||
break;
|
||||
@@ -28,7 +31,7 @@ module.exports = (env, args) => {
|
||||
settings = require("./src/configs/development/app-settings.json");
|
||||
}
|
||||
} else {
|
||||
settings = require("./src/configs/development/app-settings.json");
|
||||
settings = require("./src/configs/development/app-settings.json");
|
||||
}
|
||||
return {
|
||||
entry: {
|
||||
|
||||
Reference in New Issue
Block a user