Skip to content

Commit 4eff4a7

Browse files
fix: add remote pattern for images
1 parent 7a1730f commit 4eff4a7

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

web/next.config.mjs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
images: {
4+
remotePatterns: [
5+
{
6+
protocol: "https",
7+
hostname: "assets.stackrlabs.xyz",
8+
pathname: "/**",
9+
},
10+
],
11+
},
12+
};
313

414
export default nextConfig;

0 commit comments

Comments
 (0)