Next.js 빌드 시 알아둘 Tip

1. 폴더 구조 그대로 out 생성하기

/** @type {import('next').NextConfig} */

const nextConfig = {
  reactStrictMode: true,
  trailingSlash: true, // 폴더 구조 그대로 build를 해준다.
};

module.exports = nextConfig;

2. build시 eslint 무시하기

/** @type {import('next').NextConfig} */

const nextConfig = {
  reactStrictMode: true,
  // eslint 규칙 무시
  eslint: {
    ignoreDuringBuilds: true,
  },
};

module.exports = nextConfig;