1234567891011121314151617181920212223 |
- {
- "headers": [
- {
- "source": "/((?!favicon.ico).*)",
- "headers": [
- {
- "key": "Content-Type",
- "value": "text/plain"
- },
- {
- "key": "Content-Disposition",
- "value": "inline; filename=\"install.sh\""
- }
- ]
- }
- ],
- "rewrites": [
- {
- "source": "/((?!favicon.ico|install.sh).*)",
- "destination": "/install.sh"
- }
- ]
- }
|