File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ interface Config {
57
57
target: string
58
58
position? : ' before' | ' after'
59
59
removeTarget? : boolean
60
+ leaveCssFile? : boolean
60
61
}
61
62
}
62
63
```
@@ -83,6 +84,7 @@ replace?: {
83
84
target: string
84
85
position? : ' before' | ' after' // default is 'before'
85
86
removeTarget? : boolean // default is false
87
+ leaveCssFile? : boolean // default is false
86
88
}
87
89
` ` `
88
90
A config for customizing the location of injection, default will add internal style sheet before the ` </head >`
@@ -92,6 +94,8 @@ A target for adding the internal style sheet
92
94
Add internal style sheet ` before ` / ` after ` the ` target `
93
95
#### removeTarget(optional)
94
96
if ` true ` , it will remove the ` target ` from the output HTML
97
+ #### leaveCssFile(optional)
98
+ if ` true ` , it will leave CSS files where they are when inlining
95
99
96
100
##### example
97
101
` ` ` html
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ interface Compilation {
16
16
interface ReplaceConfig {
17
17
position ?: 'before' | 'after'
18
18
removeTarget ?: boolean
19
- target : string
19
+ target : string ,
20
+ leaveCssFile ?: boolean
20
21
}
21
22
22
23
interface Config {
@@ -71,13 +72,16 @@ export default class Plugin
71
72
private prepare ( { assets } : Compilation ) {
72
73
const isCSS = is ( 'css' ) ;
73
74
const isHTML = is ( 'html' ) ;
75
+ const { replace : replaceConfig = DEFAULT_REPLACE_CONFIG } = this . config ;
74
76
75
77
Object . keys ( assets ) . forEach ( ( fileName ) => {
76
78
if ( isCSS ( fileName ) ) {
77
79
const isCurrentFileNeedsToBeInlined = this . filter ( fileName ) ;
78
80
if ( isCurrentFileNeedsToBeInlined ) {
79
81
this . css [ fileName ] = assets [ fileName ] . source ( ) ;
80
- delete assets [ fileName ] ;
82
+ if ( ! replaceConfig . leaveCssFile ) {
83
+ delete assets [ fileName ]
84
+ }
81
85
}
82
86
} else if ( isHTML ( fileName ) ) {
83
87
this . html [ fileName ] = assets [ fileName ] . source ( ) ;
You can’t perform that action at this time.
0 commit comments