Reputation: 546
Originally the webpack-dev-server save files on memory, i'd like to write the bundle to the disk.
Upvotes: 1
Views: 68
Reputation: 546
Using webpack -w
or webpack --watch
, it will bundle the project and save on the disk on the 'dist' or 'build' folder (depends on your webpack configurations).
Click the link bellow to see the configuration options ('aggregateTimeout' and 'poll')
Upvotes: 1