mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
17 lines
503 B
JavaScript
17 lines
503 B
JavaScript
|
var elixir = require('laravel-elixir');
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| 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.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
elixir(function(mix) {
|
||
|
mix.less('app.less');
|
||
|
});
|