forked from SnipSavvy/SnipSavvy_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
27 lines (25 loc) · 716 Bytes
/
Copy pathnext.config.mjs
File metadata and controls
27 lines (25 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.icons8.com",
port: "",
pathname: "/?size=50&id=22183&format=png&color=808080",
},
{
protocol: "https",
hostname: "syllabusx.live",
port: "",
pathname:
"/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fahzzxwlhflcn%2F2MXdyfKftEJipUoZKglBpY%2F9d008931b503f4471a9ff4f345d83f0f%2Fgoku.gif&w=1920&q=75",
},
],
domains: ['img.icons8.com', 'syllabusx.live', 'cdn.pixabay.com']
},
experimental: {
missingSuspenseWithCSRBailout: false,
},
};
export default nextConfig;