phpldapadmin/webpack.mix.js

16 lines
576 B
JavaScript
Raw Normal View History

2019-05-14 07:52:49 +00:00
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.
|
*/
2020-09-05 23:46:27 +00:00
mix.js(['resources/js/app.js','resources/js/bootstrap3-typeahead.js'],'public/js')
.sass('resources/sass/app.scss','public/css');