source: webpack.mix.js@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 731 bytes
Line 
1const 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
14mix.js('resources/assets/js/app.js', 'public/assets/js')
15 .sass('resources/assets/sass/app.scss', 'public/assets/css');
16
17mix.styles([
18 'resources/assets/css/app.css'
19], 'public/assets/css/app.min.css');
20
21mix.copy(['resources/assets/media/images'
22], 'public/assets/media/images');
Note: See TracBrowser for help on using the repository browser.