10 lines
236 B
JavaScript
Executable File
10 lines
236 B
JavaScript
Executable File
let basePath = process.env.REACT_APP_basePath;
|
|
basePath = "/" + basePath.replace(/^\/+/, "").replace(/\/+$/, "") + "/";
|
|
if (basePath == "//") {
|
|
basePath = "/";
|
|
}
|
|
|
|
console.log(`Using basepath ${basePath}`);
|
|
|
|
module.exports = basePath;
|