Do not throw on unrecognized .env var

This commit is contained in:
Ben Allfree 2023-12-30 11:00:45 -08:00
parent 345cdbc813
commit 357cf74a91

View File

@ -105,7 +105,7 @@ export const SETTINGS = {
}
})
if (!passed) {
throw new Error(`Exiting due to .env errors`)
// throw new Error(`Exiting due to .env errors`)
}
})()