wallet-connect-web-examples/dapps/react-dapp-v2/next.config.js

17 lines
294 B
JavaScript
Raw Normal View History

2022-08-08 09:32:24 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
2022-10-18 10:37:52 +00:00
distDir: "build",
2022-10-31 10:21:33 +00:00
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
return config;
},
2022-08-08 09:32:24 +00:00
};
module.exports = nextConfig;