forked from GreatStackDev/QuickCart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
19 lines (18 loc) · 446 Bytes
/
Copy pathnext.config.mjs
File metadata and controls
19 lines (18 loc) · 446 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'res.cloudinary.com',
pathname: '**',
},
{
protocol: 'https',
hostname: 'raw.githubusercontent.com',
pathname: '**',
},
],
},
};
export default nextConfig;