Skip to content

Commit b4ea7f3

Browse files
committed
vercel deployment fix
1 parent 0922213 commit b4ea7f3

1 file changed

Lines changed: 12 additions & 10 deletions

File tree

package.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
"files": [
88
"dist"
99
],
10-
"scripts": {
11-
"dev:server": "tsx watch server/index.ts",
12-
"dev:app": "vite --config app/vite.config.ts",
13-
"dev": "concurrently \"npm run dev:app\" \"npm run dev:server\"",
14-
"build:app": "tsc && vite build app",
15-
"lint": "eslint app/src/ server/ --ext .ts,.tsx",
16-
"tsup": "tsup",
17-
"build": "tsup"
18-
},
10+
"scripts": {
11+
"dev:server": "tsx watch server/index.ts",
12+
"dev:app": "vite --config app/vite.config.ts",
13+
"dev": "concurrently \"npm run dev:app\" \"npm run dev:server\"",
14+
"build:app": "vite build --config app/vite.config.ts",
15+
"build:server": "tsup server/index.ts --format esm",
16+
"build": "npm run build:app && npm run build:server",
17+
"lint": "eslint app/src/ server/ --ext .ts,.tsx",
18+
"tsup": "tsup"
19+
},
1920
"keywords": [
2021
"starter",
2122
"template",
@@ -73,5 +74,6 @@
7374
"vite": "^4.4.7",
7475
"vite-plugin-windicss": "^1.9.0",
7576
"windicss": "^3.5.6"
76-
}
77+
},
78+
"packageManager": "npm@8.19.2"
7779
}

0 commit comments

Comments
 (0)