Skip to content

Commit 36841dd

Browse files
committed
next.js 반영 및 오류 해결
1 parent 8c87248 commit 36841dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1473
-500
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
.next/

next.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
reactStrictMode: true,
4+
images: {
5+
domains: [
6+
"image.hanatour.com",
7+
"sprint-fe-project.s3.ap-northeast-2.amazonaws.com",
8+
"example.com",
9+
],
10+
},
11+
};
12+
13+
module.exports = nextConfig;

0 commit comments

Comments
 (0)