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 0b3bbd6 commit 27e3fbe
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,5 +1,8 @@
let mix = require('laravel-mix');

mix.js('src/assets/src/wallet-pay.js', 'src/assets/dist/js/')
// 2022 - temp fix of laravel-mix incompatibility with Apple Silicon
// see https://github.com/laravel-mix/laravel-mix/issues/3027
.disableNotifications()
.setPublicPath('src/assets/dist')
.version();

0 comments on commit 27e3fbe

Please sign in to comment.