htmldocs
Version:
<h1 align="center"> <img src="https://github.com/user-attachments/assets/655fa7f9-98e7-42ee-8cd0-bb9193f100e9" alt="htmldocs" width="100%" /> </h1>
17 lines (13 loc) • 368 B
JavaScript
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, { isServer }) => {
if (isServer) {
config.externals.push("esbuild");
}
return config;
},
};
const withBundleAnalyzer = (await import('@next/bundle-analyzer')).default({
enabled: process.env.ANALYZE === 'true',
});
export default withBundleAnalyzer(nextConfig);