You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mm i thought about it, but it felt a lil presumptuous. Also, compatibility between operating systems prob adds a complication I didn't want to go down. I know you can call something along the lines of open http://some-website and it work on mac.. dunno if thats the case for windows etc.
React uses something like const openBrowser = require('react-dev-utils/openBrowser'); and openBrowser(urls.localUrlForBrowser);
in here which works fine on windows.
Feel like we could just pull this in as a dependency and use this as well as it adds fallback and options to not open the browser etc. Maybe take a look at what it does here.
Just like when you start react dev server via
npm run start
we could openlocalhost:5000
and/orappstrap.localhost:5000
in a new tab in the browser.What do you think?
The text was updated successfully, but these errors were encountered: