[Next.js] configuration
๐ configuration
Next.js์ configuration์ ์ปค์คํ
ํ๋ ค๋ฉด next.config.js
๋ next.config.mjs
๋ฅผ ์์ฑํด์ผ ํ๋ค.
next.config.js
๋ Node.js์ ๋ชจ๋์ด๋ค. (JSON ์๋)
next.config.js
๋ Next.js์ ์๋ฒ๋ก ์ฌ์ฉ๋์ง๋ง ๋ธ๋ผ์ฐ์ build ์ ํฌํจ๋์ง ์๋๋ค.
// next.config.js
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
/* config options here */
};
module.exports = nextConfig;
๋ง์ฝ ECMAScript ๋ชจ๋์ด ํ์ํ๋ค๋ฉด next.config.mjs
๋ฅผ ์ฌ์ฉํ๋ค.
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
/* config options here */
};
export default nextConfig;
๐ฌ ์ต์ ๋๊ธ