Skip to content

Commit 23ce5b0

Browse files
committed
Clarify missing css file error message.
* Fixed redundant quotes due to colour.
1 parent 86d88cb commit 23ce5b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/friendly-errors/formatters/missing-loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function formatErrors(errors) {
2424

2525
if (error.loaderName) {
2626
let neededCode = `Encore.${loaderFeatures.getFeatureMethod(error.loaderName)}`;
27-
fixes.push(`Add '${chalk.green(neededCode)}' to your webpack.config.js file.`);
27+
fixes.push(`Add ${chalk.green(neededCode)} to your webpack.config.js file.`);
2828

2929
const packageRecommendations = loaderFeatures.getMissingPackageRecommendations(error.loaderName);
3030

0 commit comments

Comments
 (0)