
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
// (option) serverless dockerlizing์ ์ํด
unoptimized: true,
},
output: 'standalone', // dockerlizing์ ์ํด
}
export default nextConfig
output: 'standalone' ๋ฅผ ์ ๊ฑฐโญ ์ง์ ์๋ yarn build๊ฐ ์ฑ๊ณตํด์ ์ ์ฝ๋์ ๋ฌธ์ ์ธ์ค ์์๋๋ฐ ์๋์์
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
// (option) serverless dockerlizing์ ์ํด
unoptimized: true,
},
outputStandalone: true, // ์ด๊ฑธ๋ก ์์
}
export default nextConfig
โ ๋์ผํ ๊ธฐ๋ฅ์ ํ์ง๋ง, ๋ฌธ๋ฒ์ด ์ ๋ฐ์ดํธ ๋ ๊ฒ ๊ฐ๋ค.
Windows with pnpm and output standalone not work properly ยท Issue #50803 ยท vercel/next.js