wallet-connect-web-examples/dapps/react-dapp-v2/next.config.js
2022-08-08 11:32:24 +02:00

9 lines
158 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
distDir: 'build'
};
module.exports = nextConfig;