32 lines
No EOL
574 B
TypeScript
32 lines
No EOL
574 B
TypeScript
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
|
|
|
|
import type { RuleSetRule } from 'webpack';
|
|
|
|
const rule: RuleSetRule = {
|
|
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,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default rule; |