2016-08-12 09:36:27 -03:00
|
|
|
const elixir = require('laravel-elixir');
|
2014-10-10 12:51:20 -05:00
|
|
|
|
2016-10-02 21:33:25 -05:00
|
|
|
require('laravel-elixir-vue-2');
|
2016-07-23 13:40:49 -05:00
|
|
|
|
2014-10-10 12:51:20 -05:00
|
|
|
/*
|
2014-11-29 15:48:27 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Elixir Asset Management
|
|
|
|
|
|--------------------------------------------------------------------------
|
2014-10-10 12:51:20 -05:00
|
|
|
|
|
2014-11-29 15:48:27 -06:00
|
|
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
|
2015-06-27 14:21:37 +02:00
|
|
|
| for your Laravel application. By default, we are compiling the Sass
|
2016-10-18 07:43:04 -05:00
|
|
|
| file for your application as well as publishing vendor resources.
|
2014-10-10 12:51:20 -05:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2016-10-21 11:14:49 -04:00
|
|
|
elixir((mix) => {
|
2016-07-10 21:07:27 -05:00
|
|
|
mix.sass('app.scss')
|
2016-07-15 10:07:47 -05:00
|
|
|
.webpack('app.js');
|
2014-11-21 15:03:13 -06:00
|
|
|
});
|