Skip to content

Commit

Permalink
fix: deploy config
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavoerivero committed Oct 12, 2024
1 parent 4130578 commit d52186c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package-lock.json
yarn.lock

.vercel
node_modules
public
build
Expand Down
6 changes: 3 additions & 3 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"public": true,
"builds": [
{
"src": "public/index.js",
"src": "dist/index.js",
"use": "@vercel/node",
"config": {
"includeFiles": ["public/**"]
"includeFiles": ["dist/**"]
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "public/index.js"
"dest": "dist/index.js"
}
]
}

1 comment on commit d52186c

@vercel
Copy link

@vercel vercel bot commented on d52186c Oct 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.