[Vuejs]-How to compile multiple mix.webpackConfig with multple folders in Laravel VueJs

0👍

You can put all your js assets in an array like this: mix.js([source assests],'destination.js').vue(); . I have added that vue() method to tell webpack that we are dealing with vue files;

Leave a comment