Skip to content

Commit

Permalink
fix: standalone 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Oct 8, 2024
1 parent 0d598f8 commit 1aeb417
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: { instrumentationHook: true },
reactStrictMode: true,

Expand All @@ -9,14 +10,14 @@ const nextConfig = {
'd2qf2amuam62ps.cloudfront.net',
'scs-phinf.pstatic.net',
'api.moaguide.com',
'entertain.naver.com',
],
'entertain.naver.com'
]
},

swcMinify: true,

compiler: {
styledComponents: true,
styledComponents: true
},

webpack: (config, { isServer }) => {
Expand All @@ -30,7 +31,7 @@ const nextConfig = {
else config.resolve.alias['msw/node'] = false;
}
return config;
},
}
};

export default nextConfig;
export default nextConfig;

0 comments on commit 1aeb417

Please sign in to comment.