fix: update fetch API endpoint and adjust rewrites in vercel.json
This commit is contained in:
+1
-1
@@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
const start = Date.now();
|
const start = Date.now();
|
||||||
const res = await fetch('/api', {
|
const res = await fetch('/', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
'x-relay-target': target,
|
'x-relay-target': target,
|
||||||
|
|||||||
+7
-1
@@ -1,5 +1,11 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://openapi.vercel.sh/vercel.json",
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
||||||
"bunVersion": "1",
|
"bunVersion": "1",
|
||||||
"installCommand": "bun install"
|
"installCommand": "bun install",
|
||||||
|
"rewrites": [
|
||||||
|
{ "source": "/api", "destination": "/api/index.ts" },
|
||||||
|
{ "source": "/api/(.*)", "destination": "/api/index.ts" },
|
||||||
|
{ "source": "/public/(.*)", "destination": "/public/$1" },
|
||||||
|
{ "source": "/(.*)", "destination": "/public/$1" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user