From 999ed56436bef1c38fb861ebcf21acbe61f9d046 Mon Sep 17 00:00:00 2001 From: Jordan Baczuk Date: Thu, 4 Nov 2021 20:14:00 -0600 Subject: [PATCH] add custom loader to next.config.js in README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 47af795..90083ad 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,11 @@ module.exports = withPlugins([ /* config for next-optimized-images */ }], + // tell Next.js that you are using a custom loader + images: { + loader: 'custom' + } + // your other plugins here ]);