about summary refs log tree commit diff
path: root/config/webpack/loaders/sass.js
blob: 24abf168572f6da09afaae911c445dc63a8655d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const { env } = require('../configuration.js');

module.exports = {
  test: /\.(scss|sass|css)$/i,
  use: ExtractTextPlugin.extract({
    fallback: 'style-loader',
    use: [
      { loader: 'css-loader', options: { minimize: env.NODE_ENV === 'production' } },
      'postcss-loader',
      'sass-loader',
    ],
  }),
};