Deploying app as PWA
Learn how to deploy your app as PWA on a free Firebase hosting
Prepare Firebase project for PWA
$ npm install -g firebase-tools$ firebase login$ firebase init{
"hosting": {
"public": "www",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}Convert the app into a PWA

Last updated