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
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
I'm looking at the webpack.config file and I see this block:
output: {
path: './dist',
},
However, when I build the project with npm start, although I am able to load the project in the browser I cannot find the dist directory. Where are the built files being written?
The text was updated successfully, but these errors were encountered:
If you run npm start in the project it will use webpack-dev-server, and all files server by it will be ran from the memory, so there will be no files created on the disk.
You can resolve it by using npm run watch and then server the files from somewhere else.
I'm looking at the webpack.config file and I see this block:
However, when I build the project with
npm start
, although I am able to load the project in the browser I cannot find thedist
directory. Where are the built files being written?The text was updated successfully, but these errors were encountered: