Skip to content

Commit 909e437

Browse files
authored
Pooja/fix deploy (#41)
* Log broken links to see if deployment is fixed * Make config changes for fixing deployment
1 parent 05333da commit 909e437

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/firebase-deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
- name: Build
1919
run: npm run build
2020

21+
- name: List Build Directory
22+
run: ls -R ./build # Ensure build output is correct
23+
2124
- name: Deploy to Firebase
2225
uses: w9jds/firebase-action@master
2326
with:

docs/Integrations/authentication/types/firebase-auth/initial-setup.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ sidebar_position: 1
77
# Enabling Firebase Auth in FlutterFlow
88

99
:::tip[Skip if...]
10-
...you have already enabled authentication while creating a [**new project with Firebase setup.**](..%2F..%2F..%2FFirebase%2FConnect%20to%20Firebase%20Setup.md)
10+
...you have already enabled authentication while creating a [**new project with Firebase setup.
11+
**](../../../firebase/connect-to-firebase-setup.md)
1112
:::
1213

1314
To enable authentication in FlutterFlow:

firebase.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
"firebase.json",
66
"**/.*",
77
"**/node_modules/**"
8+
],
9+
"rewrites": [
10+
{
11+
"source": "**",
12+
"destination": "/index.html"
13+
}
814
]
915
}
10-
}
16+
}

0 commit comments

Comments
 (0)