Skip to content

Commit

Permalink
I update nextjs config
Browse files Browse the repository at this point in the history
  • Loading branch information
techeng322 committed Jun 12, 2024
1 parent 6bb921d commit 7b06bb4
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ["cdn.sanity.io", "pbs.twimg.com", "f005.backblazeb2.com"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.sanity.io",
},
reactStrictMode: true,
compiler: {
styledComponents: true,
{
protocol: "https",
hostname: "pbs.twimg.com",
},
{
protocol: "https",
hostname: "f005.backblazeb2.com",
}
],
},
reactStrictMode: true,
compiler: {
styledComponents: true,
}
};

export default nextConfig;

0 comments on commit 7b06bb4

Please sign in to comment.