go-ethereum/next.config.js
2022-12-12 16:10:15 -03:00

13 lines
309 B
JavaScript

/** @type {import('next').NextConfig} */
const { redirects: redirectsList } = require('./redirects');
module.exports = {
reactStrictMode: true,
swcMinify: true,
// Append the default value with md extensions
pageExtensions: ['ts', 'tsx', 'md'],
async redirects() {
return redirectsList;
}
};