-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.mix.js
More file actions
20 lines (18 loc) · 957 Bytes
/
Copy pathwebpack.mix.js
File metadata and controls
20 lines (18 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.js('public/frontend/Page/js/script.js', 'public/js/app.js')
// .js('public/frontend/Page/js/jquery.bxslider.min.js', 'public/js/app.js')
// .js('public/frontend/Page/js/websiting.main.js', 'public/js/app.js')
// .js('public/popup/content/plugins/halfdata-green-popups/js/lepopup.js', 'public/js/app.js')
.js('public/support/js/main.js', 'public/js/app.js')
.postCss('public/frontend/Page/css/jquery.steps.css', 'public/css/app.css')
.postCss('public/frontend/Page/css/style.css', 'public/css/app.css');