-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
39 lines (38 loc) · 919 Bytes
/
next.config.js
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
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '5000',
},
{
protocol: 'http',
hostname: 'localhost',
port: '5001',
},
{
protocol: 'https',
hostname: 'ucms-user-profile-images-dev.s3.ap-northeast-1.amazonaws.com',
},
{
protocol: 'https',
hostname: 'ucms-club-images-dev.s3.ap-northeast-1.amazonaws.com',
},
],
},
env: {
NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL,
},
transpilePackages: ['@mdxeditor/editor'],
reactStrictMode: true,
webpack: (config) => {
// this will override the experiments
config.experiments = { ...config.experiments, topLevelAwait: true }
// this will just update topLevelAwait property of config.experiments
// config.experiments.topLevelAwait = true
return config
},
}
module.exports = nextConfig