Skip to content

Commit 6c042a5

Browse files
authored
fix(angular-rspack): stylesheet should be attached to html (#41)
1 parent bc57650 commit 6c042a5

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

packages/angular-rspack/src/lib/config/style-config-utils.ts

+10-6
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,16 @@ export function getSassLoaderConfig(
3030
importLoaders: 1,
3131
},
3232
},
33-
{
34-
loader: require.resolve('resolve-url-loader'),
35-
options: {
36-
sourceMap: sourceMap?.styles,
37-
},
38-
},
33+
...(sourceMap?.styles
34+
? [
35+
{
36+
loader: require.resolve('resolve-url-loader'),
37+
options: {
38+
sourceMap: sourceMap?.styles,
39+
},
40+
},
41+
]
42+
: []),
3943
{
4044
loader: 'sass-loader',
4145
options: {

packages/angular-rspack/src/lib/plugins/ng-rspack.ts

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export class NgRspackPlugin implements RspackPluginInstance {
5353
inject: 'body',
5454
scriptLoading: 'module',
5555
template: this.pluginOptions.index.input,
56-
chunks: this.pluginOptions.index.insertionOrder.map(([name]) => name),
5756
}).apply(compiler);
5857
}
5958
if (

0 commit comments

Comments
 (0)