aboutsummaryrefslogtreecommitdiff
path: root/config/webpack/rules/css.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/webpack/rules/css.js')
-rw-r--r--config/webpack/rules/css.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/config/webpack/rules/css.js b/config/webpack/rules/css.js
deleted file mode 100644
index bc1f42c13..000000000
--- a/config/webpack/rules/css.js
+++ /dev/null
@@ -1,28 +0,0 @@
-const MiniCssExtractPlugin = require('mini-css-extract-plugin');
-
-module.exports = {
- test: /\.s?css$/i,
- use: [
- MiniCssExtractPlugin.loader,
- {
- loader: 'css-loader',
- options: {
- sourceMap: true,
- importLoaders: 2,
- },
- },
- {
- loader: 'postcss-loader',
- options: {
- sourceMap: true,
- },
- },
- {
- loader: 'sass-loader',
- options: {
- implementation: require('sass'),
- sourceMap: true,
- },
- },
- ],
-};