I have this two files in resources/assets/less
folder style.less
and admin/style.less
. I want to compile this files to diffrent paths as the following:
style.less
compiled to public/css/
and the other one compiled to public/admin/styles/
this is What i did in the gulpfile.js
elixir(function(mix) {
mix.less('style.less', 'public/css/');
mix.less('admin/style.less', 'public/admin/styles/');
});
but this compile only one file. What is the problem and how can i fix this issue?