-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
24 lines (21 loc) · 914 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const elixir = require('laravel-elixir');
require('laravel-elixir-vue');
/*
|--------------------------------------------------------------------------
| 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 Sass
| file for our application, as well as publishing vendor resources.
|
*/
elixir(function(mix) {
mix.sass('web_custom.scss');
mix.sass('admin_customize.scss');
mix.sass('../src/scss/custom.scss');
mix.scripts('../src/js/custom.js','public/js/custom.js');
// mix.scripts('../src/js/helpers/smartresize.js','public/js/smartresize.js');
// mix.copy('resources/assets/src/js/helpers/panel.js','public/js/panel.js');
// mix.copy('resources/assets/vendors/','public/vendors/');
});