File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1299,11 +1299,11 @@ class Encore {
1299
1299
*
1300
1300
* Internally, this disables the mini-css-extract-plugin
1301
1301
* and uses the style-loader instead.
1302
- * @param {boolean } enabled
1302
+ * @param {boolean } disabled
1303
1303
* @returns {Encore }
1304
1304
*/
1305
- disableCssExtraction ( enabled = true ) {
1306
- webpackConfig . disableCssExtraction ( enabled ) ;
1305
+ disableCssExtraction ( disabled = true ) {
1306
+ webpackConfig . disableCssExtraction ( disabled ) ;
1307
1307
1308
1308
return this ;
1309
1309
}
Original file line number Diff line number Diff line change @@ -810,8 +810,8 @@ class WebpackConfig {
810
810
this . useFontsLoader = false ;
811
811
}
812
812
813
- disableCssExtraction ( enabled = true ) {
814
- this . extractCss = ! enabled ;
813
+ disableCssExtraction ( disabled = true ) {
814
+ this . extractCss = ! disabled ;
815
815
}
816
816
817
817
configureFilenames ( configuredFilenames = { } ) {
You can’t perform that action at this time.
0 commit comments