Skip to content

Commit

Permalink
fix(1): The "images.domains" configuration is deprecated. Please use …
Browse files Browse the repository at this point in the history
…"images.remotePatterns" configuration instead.
  • Loading branch information
Yui-Ezic committed Jun 3, 2024
1 parent 44177ed commit 516fdf2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ["desu.shikimori.one"],
remotePatterns: [
{
protocol: "https",
hostname: "desu.shikimori.one",
pathname: "**",
},
],
},
};

Expand Down

0 comments on commit 516fdf2

Please sign in to comment.