osb/webpack.mix.js

16 lines
578 B
JavaScript
Raw Normal View History

2019-06-02 05:35:48 +00:00
const mix = require('laravel-mix');
2017-11-03 05:26:07 +00:00
/*
|--------------------------------------------------------------------------
| 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-05-26 01:44:02 +00:00
mix.js(['resources/js/app.js','resources/js/bootstrap3-typeahead.js'], 'public/js')
2019-06-02 05:35:48 +00:00
.sass('resources/sass/app.scss', 'public/css');