Config.Tips

Next.js Config

Next.js is an open-source web development framework providing React-based web applications with server-side rendering and static website generation.

nextjs.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
  /* config options here */
}

module.exports = nextConfig

Tips