webpack.config.js
module.exports = {
// ...
devServer: {
client: {
overlay: true,
},
},
};
Usage via CLI:
npx webpack serve --open --client-overlay
To disable:
npx webpack serve --open --no-client-overlay
- The script should open
http://localhost:8080/
in your default browser. - You should see an overlay in browser for compilation errors.
- Update
entry
in webpack.config.js toapp.js
and save. - You should see the text on the page itself change to read
Success!
.
webpack.config.js
module.exports = {
devServer: {
client: {
overlay: {
runtimeErrors: (msg) => {
if (msg) {
if (msg instanceof DOMException && msg.name === "AbortError") {
return false;
}
let msgString;
if (msg instanceof Error) {
msgString = msg.message;
} else if (typeof msg === "string") {
msgString = msg;
}
if (msgString) {
return !/something/i.test(msgString);
}
}
return true;
},
},
},
},
};
Run the command:
npx webpack serve --open
What should happens:
- When you click the "Click to throw error" button, the overlay should appears.
- When you click the "Click to throw ignored error" button, the overlay should not appear but you should see an error is logged in console (default browser behavior).
- When you click the "Click to throw unhandled promise rejection" button, the overlay should appears.
- When you click the "Click to throw ignored promise rejection" button, the overlay should not appear but you should see an error is logged in console (default browser behavior).