1
0

vercel.json 225 B

123456789101112131415
  1. {
  2. "github": {
  3. "silent": true
  4. },
  5. "rewrites": [
  6. {
  7. "source": "/embedded/(.*)",
  8. "destination": "/embedded/index.html"
  9. },
  10. {
  11. "source": "/(.*)",
  12. "destination": "/index.html"
  13. }
  14. ]
  15. }