mstnorris10 years ago Best Answer Level 55ReplyReport Spamhttp://laravel.com/docs/5.1/elixir#working-with-stylesheets You may also combine multiple Less files into a single CSS file. Again, the resulting CSS will be placed in public/css/app.css. If you wish to customize the output location of the compiled CSS, you may pass a second argument to the less method: elixir(function(mix) { mix.less([ "app.less", "controllers.less" ], "public/assets/css"); }); Like Reply
christiangerdes OP 10 years agoLevel 16ReplyReport SpamThanks, @mstnorris, That was the solution! mix.less('master.less', 'public/css/master.min.css'); Like Reply 1 like