Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Ask Question
webpack output is served from /
i 「wds」: Content not from webpack is served from C:\projectName\dist
i 「wds」: 404s will fallback to /index.html
I would like to know if everything worked fine in the browser or not? I have the same issue so I changed my output key in the
webpack.config.js
like following:
output: {
path: __dirname + '/dist',
filename: 'bundle.js'
but I still get the following thingy in terminal whenever I run npm run start
ℹ 「wds」: Project is running at http://localhost:8080/
ℹ 「wds」: webpack output is served from /
ℹ 「wds」: Content not from webpack is served from ./dist
So I can't see bundle.js file anywhere, either in my ./dist folder or anywhere else but everything works in the browser with out the console giving any errors
We will be able to see the bundle.js file appearing in the ./dist folder when we build the whole app with something like npm run build
. It won't appear in the development phase.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.