-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathwebpack.mix.js
More file actions
24 lines (22 loc) · 867 Bytes
/
webpack.mix.js
File metadata and controls
24 lines (22 loc) · 867 Bytes
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 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.
|
*/
//css bundle
mix.styles([
'public/assets/css/bootstrap.min.css',
'public/assets/css/bootstrap-ext end.min.css',
'public/assets/css/site.min.css',
'public/assets/global/vendor/animsition/animsition.min.css',
'public/assets/global/vendor/asscrollable/asScrollable.min.css',
'public/assets/global/vendor/slidepanel/slidePanel.min.css',
], 'public/assets/bundle/app.min.css').options({
processCssUrls: false,
});