mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Unbundle javascript language files automatically generated for each install * update docs * update laravel-vue-i18n-generator a newer (unreleased) verison is need for English fallback to work
19 lines
601 B
JavaScript
19 lines
601 B
JavaScript
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.setPublicPath('html/')
|
|
.js('resources/js/app.js', 'js')
|
|
.sass('resources/sass/app.scss', 'css')
|
|
.extract()
|
|
.version('html/js/lang/*.js');
|