diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2022-05-09 17:57:57 +0000 |
---|---|---|
committer | Yamagishi Kazutoshi <ykzts@desire.sh> | 2022-09-11 16:05:01 +0000 |
commit | 64ee565b339eefbeb601200611f9fd08174135ef (patch) | |
tree | 6b33c9efa711ed0b820392f7eadd6bb9375ca6d7 /config/webpack/rules/css.js | |
parent | 0aacf00f5b77264537aa87fb8f78d7346feb1ec4 (diff) | |
download | mastodon-deps/shakapacker.tar mastodon-deps/shakapacker.tar.gz mastodon-deps/shakapacker.tar.bz2 mastodon-deps/shakapacker.zip |
Replace to shakapacker from webpackerdeps/shakapacker
Diffstat (limited to 'config/webpack/rules/css.js')
-rw-r--r-- | config/webpack/rules/css.js | 28 |
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, - }, - }, - ], -}; |