Skip to content

Commit

Permalink
Flip "style-loader"/"css-loader" order in @wordpress/scripts webpack …
Browse files Browse the repository at this point in the history
…example (#20251)

* Flip "style-loader"/"css-loader" order in webpack example

* Code style changes

Co-authored-by: Grzegorz (Greg) Ziółkowski <[email protected]>
  • Loading branch information
johnwatkins0 and gziolo authored Feb 17, 2020
1 parent 78de49e commit 07e8b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ module.exports = {
...defaultConfig.module.rules,
{
test: /\.css$/,
use: ["css-loader", "style-loader"],
use: [ 'style-loader', 'css-loader' ],
}
]
}
Expand Down

0 comments on commit 07e8b84

Please sign in to comment.