wallet-connect-web-examples/dapps/react-dapp-v2/next.config.js
2022-10-31 11:21:33 +01:00

17 lines
294 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
distDir: "build",
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
return config;
},
};
module.exports = nextConfig;