My sass modules can import each other like below.
// LinearLayout.scss
@mixin LinearLayout { ... }
linear-layout { @include LinearLayout; }
// ScrollView.scss
@use "LinearLayout" as *;
@mixin ScrollView {
@include LinearLayout;
...
}
scroll-view { @include ScrollView; }
And because each sass module ends up in the bundled css file by being imported in scripts, the bundled css file contains duplicate css selectors.
How can I remove the duplicates?
Common requirement under both Webpack versions
I haven't dug about this, but it seems both plugins work in a specific webpack bundling lifecycle which is made by
mini-css-extract-plugin
. So you can't use style-loader, and the thing that was done by it can be done by html-webpack-plugin.The below is how your
webpack.config.ts
should be like. Note that you setoptimization.minimize
as true to make it run also in development.