Skip to content

Commit

Permalink
Shift Asset configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed Nov 21, 2016
1 parent 1e67983 commit 5da93db
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions gulpfile.js
@@ -1,4 +1,6 @@
var elixir = require('laravel-elixir');
const elixir = require('laravel-elixir');

require('laravel-elixir-vue-2');

/*
|--------------------------------------------------------------------------
Expand All @@ -7,10 +9,11 @@ var elixir = require('laravel-elixir');
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your Laravel application. By default, we are compiling the Sass
| file for our application, as well as publishing vendor resources.
| file for your application as well as publishing vendor resources.
|
*/

elixir(function(mix) {
mix.sass('app.scss');
elixir((mix) => {
mix.sass('app.scss')
.webpack('app.js');
});

0 comments on commit 5da93db

Please sign in to comment.