Skip to content

Commit 99a7ae8

Browse files
feat: add .nvmrc for Node.js version management and create vercel.json for deployment configuration; remove unused Rollup dependency
1 parent 7c9b8c1 commit 99a7ae8

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

client/.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

client/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272
},
7373
"devDependencies": {
7474
"@eslint/js": "^9.25.0",
75-
"@rollup/rollup-win32-x64-msvc": "^4.50.0",
7675
"@tailwindcss/container-queries": "^0.1.1",
7776
"@tailwindcss/typography": "^0.5.16",
7877
"@types/jspdf": "^1.3.3",

client/vercel.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": 2,
3+
"framework": "vite",
4+
"buildCommand": "npm run build",
5+
"outputDirectory": "dist",
6+
"installCommand": "npm install",
7+
"devCommand": "npm run dev",
8+
"cleanUrls": true,
9+
"trailingSlash": false,
10+
"rewrites": [
11+
{
12+
"source": "/(.*)",
13+
"destination": "/index.html"
14+
}
15+
]
16+
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)