@next/eslint-plugin-next 15.0.4 → 15.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/rules/no-img-element.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ module.exports = (0, _definerule.defineRule)({
|
|
|
27
27
|
}
|
|
28
28
|
context.report({
|
|
29
29
|
node: node,
|
|
30
|
-
message: "Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: ".concat(url)
|
|
30
|
+
message: "Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: ".concat(url)
|
|
31
31
|
});
|
|
32
32
|
}
|
|
33
33
|
};
|