Skip to content

Commit

Permalink
Merge pull request #62 from SUIN-BUNDANG-LINE/develop
Browse files Browse the repository at this point in the history
설문이용 v1.0.0 프론트엔드 배포
  • Loading branch information
JeongHunHui authored Oct 2, 2024
2 parents aa86b9d + 791eb0f commit e446322
Show file tree
Hide file tree
Showing 200 changed files with 10,154 additions and 891 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@typescript-eslint/camelcase": "off",
"no-console": "warn",
"react/require-default-props": "off",
"import/prefer-default-export": "off"
"import/prefer-default-export": "off",
"react/jsx-props-no-spreading": "off"
}
}
13 changes: 12 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
reactStrictMode: false,
swcMinify: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'files.sulmoon.io',
},
],
},
};

export default nextConfig;
Loading

0 comments on commit e446322

Please sign in to comment.