diff --git a/next.config.js b/next.config.js index a843cbe..28d7e45 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,17 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - reactStrictMode: true, -} + reactStrictMode: true, -module.exports = nextConfig + images: { + remotePatterns: [ + { + protocol: "http", + hostname: "localhost", + port: "3000", + pathname: "/api/files/**", + }, + ], + }, +}; + +module.exports = nextConfig;