UNPKG

create-dapp-template

Version:
11 lines (9 loc) 233 B
/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, webpack: (config) => { config.externals.push('pino-pretty', 'lokijs', 'encoding'); return config; }, }; module.exports = nextConfig;