[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;

์ถœ์ฒ˜

Leave a comment