fix: update import path for relay-utils and restore functions configuration in vercel.json

This commit is contained in:
MythEclipse
2026-05-07 19:53:20 +07:00
parent 212ce32480
commit 8e0cf9d0f3
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import {
normalizeTargetUrl, normalizeTargetUrl,
stripRelayHeaders, stripRelayHeaders,
isAllowedTarget, isAllowedTarget,
} from "~/relay-utils"; } from "./relay-utils";
export const config = { runtime: "edge" }; export const config = { runtime: "edge" };
+6 -1
View File
@@ -1,5 +1,10 @@
{ {
"$schema": "https://openapi.vercel.sh/vercel.json", "$schema": "https://openapi.vercel.sh/vercel.json",
"bunVersion": "1", "bunVersion": "1",
"installCommand": "bun install" "installCommand": "bun install",
"functions": {
"api/**/*.ts": {
"runtime": "bun"
}
}
} }