Skip to content

Commit 3702196

Browse files
committed
fix: update
1 parent 1a96b52 commit 3702196

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

apps/namadillo/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
/playwright-report/
1010
/playwright/.cache/
1111
/public/localnet-config.toml
12+
.vercel

apps/namadillo/public/_redirects

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
/* /index.html 200
1+
/* /index.html 200
2+
/*/* /index.html 200
3+
/*/*/* /index.html 200
4+
/*/*/*/* /index.html 200

apps/namadillo/src/vercel.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"version": 2,
3+
"routes": [
4+
{
5+
"src": [{ "src": "/[^.]+", "dest": "/", "status": 200 }],
6+
"dest": "/index.html"
7+
}
8+
]
9+
}

apps/namadillo/vercel.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{
22
"version": 2,
3-
"rewrites": [{ "source": "/(.*)", "destination": "/" }]
3+
"routes": [
4+
{
5+
"src": [{ "src": "/[^.]+", "dest": "/", "status": 200 }],
6+
"dest": "/index.html"
7+
}
8+
]
49
}

0 commit comments

Comments
 (0)