How to do hot reload with firebase emulator?
-
Hi, there.
I am new to the Quasar framework and like it.
I’m sorry, if I did something rude to you. because I’m not good at English either.I am currently introducing Firebase (firestore, auth, hosting) to the Quasar Project.
I was able to set the hot reload for functions, but not the hot-reload for hosting.
I can’t set it because I don’t understand how Quasar works and how front end works.Currently, To hot-reload functions, I have the following settings in package.json.
"scripts": { "lint": "eslint --ext .js,.ts,.vue ./", "test": "echo \"Error: no test specified\" && exit 1", "serve": "tsc --project ./functions && concurrently --kill-others 'firebase serve' 'tsc --project ./functions --watch'" },
Can anyone please tell me how to hot-reload hosting?
Or, please tell me the site where the procedure is listed.
Thanking you in advance.
-
quasar’s hot reloading has nothing to do with firebase, use quasar cli command: “quasar dev” or add it to your scripts
“scripts”: {
“dev”: “quasar dev”
},and run “npm run dev”
-
suleiman_as
Oh, I see.
Thank you.