go-ethereum/next.config.js

13 lines
309 B
JavaScript
Raw Permalink Normal View History

2022-09-08 16:18:30 -03:00
/** @type {import('next').NextConfig} */
2022-12-09 00:22:16 -07:00
const { redirects: redirectsList } = require('./redirects');
2022-09-08 16:18:30 -03:00
module.exports = {
2022-09-09 09:13:20 -03:00
reactStrictMode: true,
swcMinify: true,
// Append the default value with md extensions
pageExtensions: ['ts', 'tsx', 'md'],
2022-12-09 00:22:16 -07:00
async redirects() {
2022-12-12 08:13:10 -07:00
return redirectsList;
}
};