webpack.mix.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 15
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 0
dl 0
loc 15
rs 10
c 0
b 0
f 0
cc 0
nc 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
const { mix } = require('laravel-mix');
2
3
/*
4
 |--------------------------------------------------------------------------
5
 | Mix Asset Management
6
 |--------------------------------------------------------------------------
7
 |
8
 | Mix provides a clean, fluent API for defining some Webpack build steps
9
 | for your Laravel application. By default, we are compiling the Sass
10
 | file for the application as well as bundling up all the JS files.
11
 |
12
 */
13
14
mix.js('resources/assets/js/app.js', 'public/js')
15
   .sass('resources/assets/sass/app.scss', 'public/css');
16