8f48ae08c4
Co-authored-by: Yana <yanok87@users.noreply.github.com>
15 lines
370 B
JavaScript
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;
|