Revert "feat: update build output directory to 'dist' in package.json and set outputDirectory in vercel.json"

This reverts commit cfbc4609b5.
This commit is contained in:
MythEclipse
2026-05-07 20:13:41 +07:00
parent 149a646fea
commit c0bfce3d26
3 changed files with 14 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
dist
src
.gitignore
CLAUDE.md
README.md
bun.lock
biome.json
tsconfig.json
package.json
+1 -1
View File
@@ -4,7 +4,7 @@
"type": "module",
"private": true,
"scripts": {
"build": "bun build src/index.ts --target=bun --outdir=dist",
"build": "bun build src/index.ts --target=bun --outdir=api",
"start": "bun run src/index.ts",
"dev": "bun --hot run src/index.ts",
"test": "bun test",
+4
View File
@@ -1,5 +1,9 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"bunVersion": "1",
<<<<<<< HEAD
"installCommand": "bun install"
=======
"rewrites": [{ "source": "/(.*)", "destination": "/api/relay" }]
>>>>>>> parent of cfbc460 (feat: update build output directory to 'dist' in package.json and set outputDirectory in vercel.json)
}