UNPKG

create-core-dapp

Version:

A lightweight, developer-friendly full-stack starter kit for building DApps on Core. Preconfigured with Hardhat, Next.js, and RainbowKit,

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;