mirror of
https://github.com/SrIzan10/mainwebsite.git
synced 2026-06-06 00:56:58 +00:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
export const nextConfig = {
|
|
reactStrictMode: false,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 'img.srizan.dev'
|
|
},
|
|
{
|
|
hostname: 'res.cloudinary.com'
|
|
}
|
|
]
|
|
}
|
|
} |