feat(image): Improved image loading and optimization

This commit is contained in:
Pushpank Dhruw
2024-08-22 21:01:27 +05:30
parent e424bd7559
commit ba5028f72d
2 changed files with 19 additions and 9 deletions

View File

@@ -1,11 +1,20 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: {
// edit: updated to new key. Was previously `allowedForwardedHosts`
allowedOrigins: ['localhost:3000', 'get-zen.vercel.app'],
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'raw.githubusercontent.com',
},
],
},
experimental: {
serverActions: {
// edit: updated to new key. Was previously `allowedForwardedHosts`
allowedOrigins: ['localhost:3000', 'get-zen.vercel.app'],
},
},
};
export default nextConfig;