fix reset-password

This commit is contained in:
Louis Lam
2021-10-16 00:57:26 +08:00
parent f4b8da0a5c
commit 7276f34d90
3 changed files with 10 additions and 6 deletions

7
server/config.js Normal file
View File

@@ -0,0 +1,7 @@
const args = require("args-parser")(process.argv);
const demoMode = args["demo"] || false;
module.exports = {
args,
demoMode
};