UNPKG

create-next-js-boilerplate

Version:

Next.js 16 Boilerplate with TypeScript, Chakra UI, ESLint, Prettier, Husky, and Cypress — a complete starter template to build fast, scalable, and modern web applications.

11 lines (9 loc) 237 B
/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, webpackDevMiddleware: (config) => { config.infrastructureLogging = { level: "error" }; return config; }, }; module.exports = nextConfig;