Skip to content

Commit 98a577d

Browse files
2 file added, 2 file edited
1 parent 91e8e38 commit 98a577d

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

.vercelignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Ignora dipendenze locali
2+
node_modules
3+
.vscode
4+
*.log
5+
npm-debug.log
6+
.DS_Store
7+
8+
# Ignora dati temporanei o build locali
9+
dist
10+
build
11+
.cache

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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"engines": {
1515
"node": "18.x"
1616
}
17-
}
17+
}

vercel.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": 2,
3+
"builds": [
4+
{
5+
"src": "index.html",
6+
"use": "@vercel/static-build",
7+
"config": {
8+
"distDir": "dist"
9+
}
10+
}
11+
],
12+
"routes": [
13+
{
14+
"src": "/(.*)",
15+
"dest": "/index.html"
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)