This is working, apart from ingesting configuration files when building

This commit is contained in:
Zac Ioannidis
2020-12-08 12:51:22 +00:00
parent 539dccdb86
commit fa329066e4
2 changed files with 2 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -10,6 +10,7 @@ delete require.cache[require.resolve("./paths")];
/** env variables from config.js */
const CONFIG = process.env.CONFIG || "config.js";
const envConfig = require("../" + CONFIG);
const userConfig = {};
const userFeatures = {};
for (const k in envConfig) {