vercel.json 401 B

123456789101112131415161718192021222324
  1. {
  2. "github": {
  3. "silent": true
  4. },
  5. "headers": [
  6. {
  7. "source": "/(.*)",
  8. "headers" : [
  9. {
  10. "key" : "X-Content-Type-Options",
  11. "value" : "nosniff"
  12. },
  13. {
  14. "key" : "X-Frame-Options",
  15. "value" : "DENY"
  16. },
  17. {
  18. "key" : "X-XSS-Protection",
  19. "value" : "1; mode=block"
  20. }
  21. ]
  22. }
  23. ]
  24. }