From 0fcb5c9dd1ea0cc78aaf6e72121f0184d5d19469 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 3 Feb 2019 14:53:13 -0700 Subject: [PATCH] Update webpack config --- webpack.mix.js | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/webpack.mix.js b/webpack.mix.js index 352cb5880..abee92e1c 100644 --- a/webpack.mix.js +++ b/webpack.mix.js @@ -1,19 +1,21 @@ let 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 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/app.js', 'public/js') - .js('resources/assets/js/activity.js', 'public/js') - .js('resources/assets/js/components.js', 'public/js') - .js('resources/assets/js/timeline.js', 'public/js') - .sass('resources/assets/sass/app.scss', 'public/css') - .version(); +.js('resources/assets/js/activity.js', 'public/js') +.js('resources/assets/js/components.js', 'public/js') +.js('resources/assets/js/timeline.js', 'public/js') +.sass('resources/assets/sass/app.scss', 'public/css', { + implementation: require('node-sass') +}) +.version();