7 lines
287 B
JavaScript
7 lines
287 B
JavaScript
// prove to loader.io that we own this site
|
|
// by responding to requests like `/loaderio-12345/` with `loaderio-12345`
|
|
export default function loaderIoVerification(req, res, next) {
|
|
if (!req.path.startsWith('/loaderio-')) return next()
|
|
return res.send(req.path.replace(/\//g, ''))
|
|
}
|