Skip to content

Commit

Permalink
⚙️ :: (#118) image path 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kimulchan committed May 31, 2022
1 parent dc249a8 commit 2d9957c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
5 changes: 4 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
module.exports = {
reactStrictMode: true,
experimental: { esmExternals: false },
}
images: {
domains: ["blog.kakaocdn.net", "walkhub.s3.ap-northeast-2.amazonaws.com"],
},
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@emotion/styled": "^11.6.0",
"@walkhub/recharts": "^2.1.13",
"axios": "^0.25.0",
"dayjs": "^1.11.2",
"next": "12.0.4",
"next-cookies": "^2.0.3",
"postinstall-postinstall": "^2.1.0",
Expand Down
21 changes: 17 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
Expand All @@ -15,10 +19,19 @@
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@src/*": ["src/*"]
"@src/*": [
"src/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 2d9957c

Please sign in to comment.