mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
.env.test can now be overridden with .env.test.local.
This commit is contained in:
parent
819c8aaa1c
commit
7296df7b00
@ -1,4 +1,8 @@
|
||||
require("dotenv").config({ path: ".env.test" });
|
||||
const fs = require("fs");
|
||||
|
||||
require("dotenv").config({
|
||||
path: fs.existsSync(".env.test.local") ? ".env.test.local" : ".env.test",
|
||||
});
|
||||
|
||||
// For GoldenLayout.
|
||||
window.$ = require("jquery");
|
||||
|
Loading…
Reference in New Issue
Block a user