about summary refs log tree commit diff
path: root/config/webpack/loaders/sass.js
blob: 2cb0e759a6f395795a44fdf6d1c9a62c0c39b3c7 (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'
    ]
  })
}