]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - middlewares/dnt.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / middlewares / dnt.ts
1 const advertiseDoNotTrack = (_, res, next) => {
2 res.setHeader('Tk', 'N')
3 return next()
4 }
5
6 // ---------------------------------------------------------------------------
7
8 export {
9 advertiseDoNotTrack
10 }