Files
nym/explorer-nextjs/next.config.mjs
T
2025-01-28 17:30:45 +00:00

15 lines
370 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: '/network-components/mixnode/:id', // Match the old URL
destination: '/network-components/nodes/:id', // Redirect to the new URL
permanent: true,
},
];
},
};
export default nextConfig;