My parcel bundler opens up in default MS edge but i want it open local host in firefox.
Asked
Active
Viewed 493 times
0
-
Did the answers solve your problem? – MarioG8 Dec 22 '21 at 13:29
-
@MarioG8 Yes. worked perfectly! – Jan 07 '22 at 23:45
-
So you can mark my answer as solving your question ;-) Best regards ! – MarioG8 Jan 08 '22 at 07:41
-
@MarioG8 Hey, thank you so much for noticing. I absolutely missed for reason unknown. Personal bug I guess. – Jan 11 '22 at 01:38
-
Best regards ;-) – MarioG8 Jan 11 '22 at 09:38
1 Answers
2
Both work on Win10 and Linux Ubuntu 20.04. If you have parcel
installed globally
In your root project folder enter the command(terminal)
parcel --open firefox index.html
OR
If you have parcel
installed locally than change your package.json
"scripts": {
"dev": "parcel --open firefox index.html",
"prod": "parcel build index.html"
},
And hit in terminal npm run dev
You are done ! :-) Good Luck and Best regards;-)

MarioG8
- 5,122
- 4
- 13
- 29