David Zaba
David Zaba

Reputation: 67

webpack-dev-server writeToDisk: true

There is a new option:

writeToDisk: true

... but I wonder where exactly on the disk are the bundles saved? There is only the true option without specifying the destination of the bundle on the disk.

Thx in advance for clearance.

Upvotes: 2

Views: 2327

Answers (1)

Rathore
Rathore

Reputation: 305

The bundle will be saved on your output path which you have defined in webpack.config.js The default is dist folder for output

Upvotes: 1

Related Questions