2015-03-12 01:44:39 +01:00
|
|
|
var elixir = require('laravel-elixir');
|
|
|
|
|
2016-07-21 14:35:23 +02:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Elixir Asset Management
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
|
|
|
|
| for your Laravel application. By default, we are compiling the Less
|
|
|
|
| file for our application, as well as publishing vendor resources.
|
|
|
|
|
|
2015-03-12 01:44:39 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
elixir(function(mix) {
|
2016-07-21 14:35:23 +02:00
|
|
|
mix.less('app.less');
|
2015-03-12 01:44:39 +01:00
|
|
|
});
|