-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
31 lines (30 loc) · 822 Bytes
/
Copy pathnext.config.mjs
File metadata and controls
31 lines (30 loc) · 822 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
28
29
30
31
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'via.placeholder.com',
},
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
},
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
},
{
protocol: 'https',
hostname: 'encrypted-tbn0.gstatic.com',
},
{
protocol: 'https',
hostname: 'eunstory-s3-bucket.s3.ap-northeast-2.amazonaws.com',
},
],
},
output: 'standalone',
}
export default nextConfig