Webpack dist folder not getting created in project folder?

前端 未结 1 1406
-上瘾入骨i
-上瘾入骨i 2021-02-05 10:32

Everything running fine, but could not able to find where is my dist folder.I am using publicPath as per documentation, still dist folder seems to coming from memory.

Th

相关标签:
1条回答
  • 2021-02-05 10:48

    still dist folder seems to coming from memory

    Most likely because you're using webpack-dev-server (that's what it does).

    If you want your bundled assets to be actually written to disk, run webpack.

    0 讨论(0)
提交回复
热议问题