1
0
James Ketrenos 41e7ef9aa0 Routing works between webpack and app, game loading works, new game creation works
Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
2020-04-22 09:57:28 -07:00

10 lines
228 B
JavaScript
Executable File

const config = require("config");
let basePath = config.get("basePath");
basePath = "/" + basePath.replace(/^\/+/, "").replace(/\/+$/, "") + "/";
if (basePath == "//") {
basePath = "/";
}
module.exports = basePath;