mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 20:46:01 +00:00
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
function getExpressPath(path) {
|
|
path = path.replace(/\/*$/, '').replace(/^\/*/, '');
|
|
const root = (process.env.WEB_ROOT || '').replace(/^\/*/, '').replace(/\/*$/, '');
|
|
if (root) {
|
|
return `/${root}/${path}`;
|
|
}
|
|
return `/${path}`;
|
|
}
|
|
|
|
module.exports = getExpressPath;
|