Revision 167bad070bd7e3cccdd9709fcf07d7f9e0bbed0c authored by Alex Khomenko on 12 May 2021, 15:33:36 UTC, committed by GitHub on 12 May 2021, 15:33:36 UTC
* TimeRangeInput: add disabled prop

* TimeOfDayPicker: add disabled prop

* TimeZonePicker: add disabled prop

* TagsInput: add disabled prop
1 parent 6200c40
Raw File
sass.rule.js
'use strict';

const MiniCssExtractPlugin = require('mini-css-extract-plugin');

module.exports = function (options) {
  return {
    test: /\.scss$/,
    use: [
      MiniCssExtractPlugin.loader,
      {
        loader: 'css-loader',
        options: {
          importLoaders: 2,
          url: options.preserveUrl,
          sourceMap: options.sourceMap,
        },
      },
      {
        loader: 'postcss-loader',
        options: {
          sourceMap: options.sourceMap,
          config: { path: __dirname },
        },
      },
      {
        loader: 'sass-loader',
        options: {
          sourceMap: options.sourceMap,
        },
      },
    ],
  };
};
back to top