1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00

Set up basic elixir config

This commit is contained in:
Holger Lösken 2016-07-22 12:36:58 +02:00
parent 4795f33067
commit 1b4cdb4c3c

View File

@ -1,16 +1,30 @@
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.
|
/**
* Set Elixir Source Maps
*
* @type {boolean}
*/
elixir.config.sourcemaps = true;
/**
* Directory for bower source files.
* If changing this, please also see .bowerrc
*
* @type {string}
*/
var bowerDir = 'public/vendor';
elixir(function(mix) {
mix.less('app.less');
/**
* CSS configuration
*/
/**
* JS configuration
*/
});