File tree 2 files changed +10
-7
lines changed
packages/angular-rspack/src/lib
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,16 @@ export function getSassLoaderConfig(
30
30
importLoaders : 1 ,
31
31
} ,
32
32
} ,
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
+ : [ ] ) ,
39
43
{
40
44
loader : 'sass-loader' ,
41
45
options : {
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ export class NgRspackPlugin implements RspackPluginInstance {
53
53
inject : 'body' ,
54
54
scriptLoading : 'module' ,
55
55
template : this . pluginOptions . index . input ,
56
- chunks : this . pluginOptions . index . insertionOrder . map ( ( [ name ] ) => name ) ,
57
56
} ) . apply ( compiler ) ;
58
57
}
59
58
if (
You can’t perform that action at this time.
0 commit comments