-
Notifications
You must be signed in to change notification settings - Fork 22
/
webpack.mix.js
37 lines (32 loc) · 1.49 KB
/
webpack.mix.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
25
26
27
28
29
30
31
32
33
34
35
36
37
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix
/* CSS */
.sass('resources/assets/sass/main.scss', 'public/css/dashmix.css')
/*.sass('resources/assets/sass/dashmix/themes/xeco.scss', 'public/css/themes/')
.sass('resources/assets/sass/dashmix/themes/xinspire.scss', 'public/css/themes/')
.sass('resources/assets/sass/dashmix/themes/xmodern.scss', 'public/css/themes/')
.sass('resources/assets/sass/dashmix/themes/xsmooth.scss', 'public/css/themes/')
.sass('resources/assets/sass/dashmix/themes/xwork.scss', 'public/css/themes/')*/
.sass('resources/assets/sass/dashmix/themes/xdream.scss', 'public/css/themes/')
/*.sass('resources/assets/sass/dashmix/themes/xpro.scss', 'public/css/themes/')
.sass('resources/assets/sass/dashmix/themes/xplay.scss', 'public/css/themes/')*/
/* JS */
.js('resources/assets/js/laravel/app.js', 'public/js/inventarios.app.js')
.js('resources/assets/js/dashmix/app.js', 'public/js/dashmix.app.js')
/* Tools */
.browserSync('localhost:8000')
.disableNotifications()
/* Options */
.options({
processCssUrls: false
});