mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-04 08:54:33 +08:00
Started search interface, Added in vue and moved fonts
This commit is contained in:
18
webpack.mix.js
Normal file
18
webpack.mix.js
Normal file
@ -0,0 +1,18 @@
|
||||
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.
|
||||
|
|
||||
*/
|
||||
|
||||
mix.js('resources/assets/js/global.js', './public/js/common.js')
|
||||
.js('resources/assets/js/vues/vues.js', './public/js/vues.js')
|
||||
.sass('resources/assets/sass/styles.scss', 'public/css')
|
||||
.sass('resources/assets/sass/print-styles.scss', 'public/css')
|
||||
.sass('resources/assets/sass/export-styles.scss', 'public/css');
|
Reference in New Issue
Block a user