23 lines
789 B
JavaScript
23 lines
789 B
JavaScript
let mix = require('laravel-mix');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Mix Asset Management siehe https://laravel.com/docs/5.5/mix
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.setPublicPath('../');
|
|
|
|
// .sass('resources/assets/sass/app1.scss', 'public/css')
|
|
|
|
mix.js('resources/assets/js/app.js', 'public/js');
|
|
// .options({
|
|
// //publicPath: '../'
|
|
// processCssUrls: false
|
|
// });
|
|
// mix.copy('node_modules/bootstrap-sass/assets/fonts/bootstrap', 'public/fonts/bootstrap');
|