Deploy PWA on Firebase
Last updated
Was this helpful?
Last updated
Was this helpful?
To deploy the app as PWA , we will demonstrate using Firebase hosting.
First create a project on .
Now, in your project directory, run
This will install Firebase tools in your project. Now login into Firebase using
It will redirect you to browser, and authenticate using your google account. Once you are logged in, you can run this command to attach the code to your project.
It will take you through a list of options for project setup.
This will create a firebase.json
file which should look like the following
Finally, build your project into production using
This will create a production build of your ionic app for PWA deployment. Use Firebase to deploy the app using
The Firebase console will show the deployment like this
The two main requirements of a PWA are a and a . While it's possible to add both of these to an app manually.
This will deploy your app on a Firebase url such as where you will see your app running perfectly.
For a more detailed step-by-step guide on PWA deployment, check
For more information on PWA related option in firebase.json
, check