Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

loaderio-verification.js 290 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
  1. // prove to loader.io that we own this site
  2. // by responding to requests like `/loaderio-12345/` with `loaderio-12345`
  3. module.exports = function loaderIoVerification (req, res, next) {
  4. if (!req.path.startsWith('/loaderio-')) return next()
  5. return res.send(req.path.replace(/\//g, ''))
  6. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...