CoolFace
Apppublic

iridescentX/deepseek

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
vercel.json27 linesDownload Raw Back to root
1{2    "builds": [3        {4            "src": "./dist/*.html",5            "use": "@vercel/static"6        },7        {8            "src": "./dist/index.js",9            "use": "@vercel/node"10        }11    ],12    "routes": [13        {14            "src": "/",15            "dest": "/dist/welcome.html"16        },17        {18            "src": "/(.*)",19            "dest": "/dist",20            "headers": {21                "Access-Control-Allow-Credentials": "true",22                "Access-Control-Allow-Methods": "GET,OPTIONS,PATCH,DELETE,POST,PUT",23                "Access-Control-Allow-Headers": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version, Content-Type, Authorization"24            }25        }26    ]27}