Skip to content

Commit

Permalink
Merge branch 'epic/FE-27--my-page' into fix/FE-27
Browse files Browse the repository at this point in the history
  • Loading branch information
jangmoonwon authored Aug 9, 2024
2 parents 7dbe85e + 5d092ea commit 07894b5
Show file tree
Hide file tree
Showing 170 changed files with 7,874 additions and 622 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ module.exports = {
'react/jsx-props-no-spreading': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['off'],
"react/require-default-props": 'off',
"react/self-closing-comp": 'off',
'react/require-default-props': 'off',
'react/self-closing-comp': 'off',
},
settings: {
react: {
Expand Down
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,8 @@
}
]
}
}
},
"cSpell.words": [
"clsx"
]
}
File renamed without changes.
17 changes: 2 additions & 15 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,9 @@
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['sprint-fe-project.s3.ap-northeast-2.amazonaws.com', 'localhost'],
remotePatterns: [
{
protocol: 'https',
hostname: 'via.placeholder.com',
port: '',
pathname: '/**',
},
],
remotePatterns: [{ protocol: 'https', hostname: '**' }],
domains: ['phinf.pstatic.net', 'k.kakaocdn.net'],
},
rewrites: async () => [
{
source: '/api/proxy/:path*',
destination: 'https://sprint-fe-project.s3.ap-northeast-2.amazonaws.com/:path*',
},
],
};

export default nextConfig;
Loading

0 comments on commit 07894b5

Please sign in to comment.