feat/api-prox: deno deploy and vercel deploy fix

This commit is contained in:
Kentai Radiquum 2025-09-07 19:06:13 +05:00
parent a06a18b1ac
commit 1f849a1bfe
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
8 changed files with 35 additions and 10 deletions

View file

@ -4,10 +4,15 @@
},
"tasks": {
"deno-run": "deno run --sloppy-imports --allow-net deno.ts",
"deno-dev": "deno run --sloppy-imports --unstable-hmr --allow-net deno.ts"
"deno-dev": "deno run --sloppy-imports --unstable-hmr --allow-net deno.ts",
"deno-deploy": "./node_modules/.bin/tsc && deployctl deploy"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
},
"deploy": {
"include": ["dist", "deno.json"],
"entrypoint": "dist/deno.js"
}
}