You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vercel.json 577B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "public": true,
  3. "headers": [
  4. {
  5. "source": "/(.*)",
  6. "headers": [
  7. {
  8. "key": "Access-Control-Allow-Origin",
  9. "value": "*"
  10. },
  11. {
  12. "key": "X-Content-Type-Options",
  13. "value": "nosniff"
  14. },
  15. {
  16. "key": "Feature-Policy",
  17. "value": "*"
  18. },
  19. {
  20. "key": "Referrer-Policy",
  21. "value": "origin"
  22. }
  23. ]
  24. }
  25. ],
  26. "redirects": [
  27. {
  28. "source": "/webex/:match*",
  29. "destination": "https://for-webex.excalidraw.com"
  30. }
  31. ]
  32. }