vercel.json 262 B

1234567891011121314
  1. {
  2. "headers": [
  3. {
  4. "source": "/((?!favicon.ico).*)",
  5. "headers": [{ "key": "Content-Type", "value": "text/plain" }]
  6. }
  7. ],
  8. "rewrites": [
  9. {
  10. "source": "/((?!favicon.ico|install.sh).*)",
  11. "destination": "/install.sh"
  12. }
  13. ]
  14. }