1
0
mirror of synced 2025-12-21 10:57:10 -05:00
Files
docs/middleware/loaderio-verification.js
Kevin Heis 8a56437c93 Pretty format (#20352)
* Update prettier flow to include JS

* Run prettier

* ...run prettier
2021-07-14 14:35:01 -07:00

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, ''))
}