This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 974 B View raw
1{ 2 "rewrites": [ 3 { 4 "source": "/api/(.*)", 5 "destination": "https://api.cred.blue/api/$1" 6 }, 7 { 8 "source": "/(.*)", 9 "destination": "/index.html" 10 } 11 ], 12 "headers": [ 13 { 14 "source": "/client-metadata.json", 15 "headers": [ 16 { "key": "Access-Control-Allow-Origin", "value": "*" }, 17 { "key": "Content-Type", "value": "application/json" }, 18 { "key": "Cache-Control", "value": "public, max-age=300" } 19 ] 20 }, 21 { 22 "source": "/api/(.*)", 23 "headers": [ 24 { "key": "Access-Control-Allow-Credentials", "value": "true" }, 25 { "key": "Access-Control-Allow-Origin", "value": "*" }, 26 { "key": "Access-Control-Allow-Methods", "value": "GET,OPTIONS,PATCH,DELETE,POST,PUT" }, 27 { "key": "Access-Control-Allow-Headers", "value": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version" } 28 ] 29 } 30 ] 31}