develop
Last change
on this file since e742574 was 0208bbd, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
edited pagination
|
-
Property mode
set to
100644
|
File size:
976 bytes
|
Line | |
---|
1 | const mix = require('laravel-mix');
|
---|
2 |
|
---|
3 | /*
|
---|
4 | |--------------------------------------------------------------------------
|
---|
5 | | Mix Asset Management
|
---|
6 | |--------------------------------------------------------------------------
|
---|
7 | |
|
---|
8 | | Mix provides a clean, fluent API for defining some Webpack build steps
|
---|
9 | | for your Laravel applications. By default, we are compiling the CSS
|
---|
10 | | file for the application as well as bundling up all the JS files.
|
---|
11 | |
|
---|
12 | */
|
---|
13 |
|
---|
14 | mix.scripts([
|
---|
15 | 'resources/assets/js/app.min.js',
|
---|
16 | 'resources/assets/js/custom.js',
|
---|
17 | 'resources/assets/js/jquery-3.6.0.min.js',
|
---|
18 | 'resources/assets/js/user-list.js',
|
---|
19 | 'resources/assets/js/Toast.min.js',
|
---|
20 | ], 'public/assets/js/app.js')
|
---|
21 |
|
---|
22 | mix.styles([
|
---|
23 | 'resources/assets/css/app.css',
|
---|
24 | 'resources/assets/css/app.min.css',
|
---|
25 | 'resources/assets/css/Toast.min.css',
|
---|
26 | 'resources/assets/css/custom.css'
|
---|
27 | ], 'public/assets/css/app.min.css');
|
---|
28 |
|
---|
29 | mix.copy(['resources/assets/media/images'
|
---|
30 | ], 'public/assets/media/images');
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.