pub1c-web.frontend/src/config.js

10 lines
182 B
JavaScript
Raw Normal View History

2021-06-15 12:54:44 +00:00
let config;
2021-06-15 13:43:27 +00:00
if ("production" == process.env.NODE_ENV) {
2021-06-15 12:54:44 +00:00
config = require("@/config/production.json");
} else {
config = require("@/config/test.json");
}
2021-06-04 11:13:40 +00:00
2021-06-17 11:02:52 +00:00
export default config;