mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
31 lines
389 B
JavaScript
31 lines
389 B
JavaScript
var elixir = require('laravel-elixir');
|
|
|
|
/**
|
|
* 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) {
|
|
|
|
/**
|
|
* CSS configuration
|
|
*/
|
|
|
|
|
|
/**
|
|
* JS configuration
|
|
*/
|
|
|
|
|
|
});
|