vercel.json 830 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "source": "/:path*",
  33. "has": [
  34. {
  35. "type": "host",
  36. "value": "vscode.excalidraw.com"
  37. }
  38. ],
  39. "destination": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor"
  40. }
  41. ]
  42. }