-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
38 lines (34 loc) · 957 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
// const withBundleAnalyzer = require('@next/bundle-analyzer')({
// enabled: process.env.ANALYZE === 'true',
// });
const nextConfig = {
reactStrictMode: true,
images: {
domains: [
'brave-people-3.s3.ap-northeast-2.amazonaws.com',
'k.kakaocdn.net',
'lh3.googleusercontent.com',
'ssl.pstatic.net',
'avatars.githubusercontent.com',
],
},
env: {
BASE_SERVER_URL: process.env.BASE_SERVER_URL,
GA_TRACKING_ID: process.env.GA_TRACKING_ID,
GOOGLE_SITE_VERIFICATION: process.env.GOOGLE_SITE_VERIFICATION,
NAVER_SITE_VERIFICATION: process.env.NAVER_SITE_VERIFICATION,
},
compiler: {
removeConsole: process.env.NODE_ENV === 'production',
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ['@svgr/webpack'],
});
return config;
},
};
// module.exports = withBundleAnalyzer(nextConfig);
module.exports = nextConfig;