-
-
Notifications
You must be signed in to change notification settings - Fork 783
Labels
pending triageThe issue/PR is currently untouched.The issue/PR is currently untouched.
Description
System Info
N/A
Details
In webpack: css-loader -> postcss-loader -> sass-loader
In rspack: sass-loader -> css-loader -> postcss-loader
module: {
rules: [
{
test: /\.(scss|css)$/,
rules: [
{
test: /\.scss$/,
use: 'sass-loader',
},
],
use: [
{
loader: 'css-loader',
},
{
loader: 'postcss-loader',
},
],
},
],
}Reproduce link
https://github.com/nilptr/rspack-nested-rules-use-order
Reproduce Steps
- run
pnpm run build:webpack, build successfully - run
pnpm run build:rspack, build failed
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
pending triageThe issue/PR is currently untouched.The issue/PR is currently untouched.