Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/firebase-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
- name: Build
run: npm run build

- name: List Build Directory
run: ls -R ./build # Ensure build output is correct

- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ sidebar_position: 1
# Enabling Firebase Auth in FlutterFlow

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

To enable authentication in FlutterFlow:
Expand Down
8 changes: 7 additions & 1 deletion firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
}