25 lines
347 B
JSON
25 lines
347 B
JSON
{
|
|
"rewrites": [
|
|
{
|
|
"source": "/old-path",
|
|
"destination": "/new-path"
|
|
}
|
|
],
|
|
"headers": [
|
|
{
|
|
"source": "/(.*)",
|
|
"headers": [
|
|
{
|
|
"key": "X-Custom-Header",
|
|
"value": "My Value"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"functions": {
|
|
"api/**/*.ts": {
|
|
"runtime": "nodejs20.x"
|
|
}
|
|
}
|
|
}
|