Skip to content

Latest commit

 

History

History

progress

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

client.progress Option

webpack.config.js

module.exports = {
  // ...
  devServer: {
    client: {
      progress: true,
    },
  },
};

Usage via CLI:

npx webpack serve --open --client-progress

To disable:

npx webpack serve --open --no-client-progress

What Should Happen

  1. The script should open http://localhost:8080/ in your default browser.
  2. You should see the text on the page itself change to read Success!.
  3. In app.js change the text and save.
  4. You should see the compilation progress in the browser console.