Webpack-dev-server does not place bundle in dist

后端 未结 4 1154
执念已碎
执念已碎 2021-01-12 03:39

I am trying to setup a Webpack configuration for a website I want to build. I want to compile SASS to CSS and place it into the dist folder. When I run npm run build

4条回答
  •  梦毁少年i
    2021-01-12 04:01

    You can look to the generated URLs by webpack-dev-server into this URL.

    http://localhost:8080/webpack-dev-server (change host and port as needed)

    webpack-dev-server is not going to write the files into disk, but you can see them there.

提交回复
热议问题