UNPKG

@mapbox/batfish

Version:

The React-powered static-site generator you didn't know you wanted

14 lines (12 loc) 304 B
// 'use strict'; module.exports = function stripSiteBasePath( siteBasePath ) { return (req , res , next ) => { if (req.url.startsWith(siteBasePath)) { req.url = req.url.replace(siteBasePath, '') || '/'; } next(); }; };