Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
fix(deployment): serve build folder for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao committed Feb 6, 2022
1 parent 700fbaf commit 44997bd
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
"hosting": {
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}

0 comments on commit 44997bd

Please sign in to comment.