go-ethereum/next.config.js

8 lines
138 B
JavaScript
Raw Normal View History

2022-09-08 14:18:30 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-09-08 15:10:20 -05:00
swcMinify: true
};
2022-09-08 14:18:30 -05:00
2022-09-08 15:10:20 -05:00
module.exports = nextConfig;