@mapbox/batfish
Version:
The React-powered static-site generator you didn't know you wanted
24 lines (20 loc) • 398 B
JavaScript
//
;
function init(batfishConfig ) {
function stripSiteBasePath(
req ,
res ,
next
) {
if (req.url.startsWith(batfishConfig.siteBasePath)) {
req.url = req.url.replace(batfishConfig.siteBasePath, '') || '/';
}
next();
}
return {
stripSiteBasePath
};
}
module.exports = {
init
};