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
I had a minor idea but I'm not sure how much value it provides so I'm sharing it here for feedback. I think the base Webpack config could display the url of the app entry file to the user after webpack-dev-server has started. Currently one would have to extrapolate this from places in webpack's output. Here's a more concrete example of what I mean:
In the above, the entry file can be extrapolated from the two lines that I've highlighted. But its a lot to parse through (which is unfriendly to both beginners and experienced devs) and requires having to copy and paste twice. We could fairly easily add a line that logs with that URL already displayed.
Note the 4th line after the command has started. Many terminals also allow the user to CMD+click URLs to open them up immediately. Here is my naive implementation:
This could be taken a step further into showing the type of application (eg root-config running at: https://localhost:4321/index.html), framework, or other configuration info that might helpful.
The text was updated successfully, but these errors were encountered:
I had a minor idea but I'm not sure how much value it provides so I'm sharing it here for feedback. I think the base Webpack config could display the url of the app entry file to the user after webpack-dev-server has started. Currently one would have to extrapolate this from places in webpack's output. Here's a more concrete example of what I mean:
In the above, the entry file can be extrapolated from the two lines that I've highlighted. But its a lot to parse through (which is unfriendly to both beginners and experienced devs) and requires having to copy and paste twice. We could fairly easily add a line that logs with that URL already displayed.
Note the 4th line after the command has started. Many terminals also allow the user to CMD+click URLs to open them up immediately. Here is my naive implementation:
This could be taken a step further into showing the type of application (eg
root-config running at: https://localhost:4321/index.html
), framework, or other configuration info that might helpful.The text was updated successfully, but these errors were encountered: