Merge branch 'master' of github.com:alseambusher/crontab-ui into master

pull/192/head
alse 2022-04-03 16:03:15 -07:00
commit bb626170bc
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
// base url
var base_url = process.env.BASE_URL ?? '';
var base_url = (process.env.BASE_URL == undefined ? '' : process.env.BASE_URL);
base_url = base_url.replace(/\/+$/, "").trim();
exports.base_url = base_url;