Skip to content

Commit

Permalink
chore: deploy landing page and rewrite game to route
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga committed Jun 13, 2024
1 parent 93cc31a commit 3e0b0b4
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,22 @@
},
{
"target": "app_stg",
"public": "build/web",
"public": "public",
"ignore": [
".firebase",
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/game{,/**}",
"destination": "/game"
}
],
"headers": [
{
"source": "**",
"source": "/game{,/**}",
"headers": [
{
"key": "Cross-Origin-Embedder-Policy",
Expand All @@ -58,16 +64,22 @@
},
{
"target": "app_prod",
"public": "build/web",
"public": "public",
"ignore": [
".firebase",
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/game{,/**}",
"destination": "/game"
}
],
"headers": [
{
"source": "**",
"source": "/game{,/**}",
"headers": [
{
"key": "Cross-Origin-Embedder-Policy",
Expand Down

0 comments on commit 3e0b0b4

Please sign in to comment.