about summary refs log tree commit diff
path: root/config/webpack/loaders/sass.js
blob: bad09ceb426e199d0190ea4c6767a60ad90c06d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { env } = require('../configuration.js');

module.exports = {
  test: /\.s?css$/i,
  use: [
    MiniCssExtractPlugin.loader,
    {
      loader: 'css-loader',
      options: {
        minimize: env.NODE_ENV === 'production',
      },
    },
    {
      loader: 'postcss-loader',
      options: {
        sourceMap: true,
      },
    },
    'sass-loader',
  ],
};