diff --git a/web/next.config.js b/web/next.config.js index 522d4df..0df72ff 100755 --- a/web/next.config.js +++ b/web/next.config.js @@ -5,23 +5,27 @@ const nextConfig = { loader: "default", remotePatterns: [ { - protocol: 'http', - hostname: 'localhost', + protocol: "http", + hostname: "localhost", }, { - protocol: 'https', - hostname: '*.paytrail.com', + protocol: "https", + hostname: "*.paytrail.com", }, { - protocol: 'http', - hostname: 'cms', - } + protocol: "http", + hostname: "cms", + }, + { + protocol: "https", + hostname: "*.blob.core.windows.net", + }, // TODO: if we ever need to use images from other external domains, add them here ], }, eslint: { dirs: ["middleware.ts", "app", "context", "components"], }, output: "standalone", -} +}; module.exports = nextConfig;