diff --git a/lib/pipeline/webpack.config.js b/lib/pipeline/webpack.config.js index 8cc5441ea..283dbcf1b 100644 --- a/lib/pipeline/webpack.config.js +++ b/lib/pipeline/webpack.config.js @@ -79,8 +79,12 @@ const base = { module: { rules: [ { - test: /\.css$/, - use: [{loader: 'style-loader'}, {loader: 'css-loader'}] + test: /\.scss$/, + use: [ + 'style-loader', + 'css-loader', + 'sass-loader' + ] }, { test: /\.scss$/,