Skip to content

Commit

Permalink
Fix of laravel-mix incompatibility with Apple Silicon chipset
Browse files Browse the repository at this point in the history
- Fixed by temporarily disabling laravel-mix notifications
- See laravel-mix/laravel-mix#3027
  • Loading branch information
miroc committed Nov 11, 2022
1 parent 34c84e5 commit 839f0f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions webpack.mix.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
let mix = require("laravel-mix");

mix
// 2022 - temp fix of laravel-mix incompatibility with Apple Silicon
// see https://github.com/laravel-mix/laravel-mix/issues/3027
.disableNotifications()
.options({
publicPath: 'src/assets/dist',
resourceRoot: "/layouts/admin/dist",
Expand Down

0 comments on commit 839f0f3

Please sign in to comment.