Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 439 Bytes

os-notifications.md

File metadata and controls

11 lines (7 loc) · 439 Bytes

System Notifications

By default, Laravel Mix will display a system notification for each compilation. That way, you can quickly see if you have any errors that need addressing. However, in certain circumstances, this is undesirable (such as compiling on your production server). If this happens to be the case, they can be disabled from your webpack.mix.js file.

mix.js(src, output)
   .disableNotifications();

Simple!