-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
40 lines (39 loc) · 908 Bytes
/
next.config.mjs
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
28
29
30
31
32
33
34
35
36
37
38
39
40
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
formats: ["image/avif", "image/webp"],
deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
remotePatterns: [
{
protocol: "https",
hostname: "pro2-bar-s3-cdn-cf3.myportfolio.com",
pathname: "**",
},
{
protocol: "https",
hostname: "via.placeholder.com",
pathname: "**",
},
{
protocol: "https",
hostname: "res.cloudinary.com",
pathname: "**",
},
{
protocol: "https",
hostname: "lipsum.app",
pathname: "**",
},
// https://g-ipytc4hpsep.vusercontent.net/
{
protocol: "https",
hostname: "g-ipytc4hpsep.vusercontent.net",
pathname: "**",
},
],
},
experimental: {
scrollRestoration: false,
},
}
export default nextConfig