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

9 lines
159 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-08-08 09:32:24 +00:00
};
module.exports = nextConfig;