Skip to content

Commit c1086c3

Browse files
Fix next config file
1 parent ee401d1 commit c1086c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

next.config.mjs

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ if (process.env.NODE_ENV === "development") {
1010
/** @type {import('next').NextConfig} */
1111
const nextConfig = {
1212
images: {
13-
domains: ["raw.githubusercontent.com"],
13+
remotePatterns: [
14+
{
15+
hostname: "raw.githubusercontent.com",
16+
},
17+
],
1418
},
1519
};
1620
export default nextConfig;

0 commit comments

Comments
 (0)