We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff6be56 commit 9d43817Copy full SHA for 9d43817
next.config.ts
@@ -2,7 +2,7 @@ import type { NextConfig } from 'next';
2
3
const nextConfig: NextConfig = {
4
/* config options here */
5
- reactStrictMode: false,
+ reactStrictMode: true,
6
webpack(config) {
7
config.module.rules.push({
8
test: /\.svg$/, // SVG 파일을 찾습니다.
@@ -19,7 +19,7 @@ const nextConfig: NextConfig = {
19
return config;
20
},
21
22
- output: 'export',
+ trailingSlash: true,
23
images: {
24
domains: ['sprint-fe-project.s3.ap-northeast-2.amazonaws.com'], // 외부 이미지 도메인 추가
25
unoptimized: true, // 이미지 최적화 비활성화
0 commit comments