Firebase CLI: "Configure as a single-page app (rewrite all urls to /index.html)" -


i used firebase cli init static hosting project. happens when enable "configure single-page app" option? i'm looking description of files modified, , kind of effect has on firebase backend.

screenshot of firebase init command

that option sets flag in firebase.json file redirect urls /index.html.

"rewrites": [ {   "source": "**",   "destination": "/index.html" }  

see documentation of firebase hosting more information.