Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmoud-8 committed Mar 20, 2024
1 parent ecaef24 commit a77f2f3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
experimental: {
images: {
// Configuration for proxying images from image.tmdb.org
domains: ['image.tmdb.org']
}
images: {
remotePatterns: [{
protocol:'https',
hostname: 'image.tmdb.org',
pathname: '**',
}]
}
};

module.exports = nextConfig;
export default nextConfig;

0 comments on commit a77f2f3

Please sign in to comment.