There was an error while loading. Please reload this page.
import { createRedirectEngine } from '@power-seo/redirects'; const engine = createRedirectEngine({ rules: [ { source: '/old', destination: '/new', statusCode: 301 }, { source: '/blog/:slug', destination: '/articles/:slug' }, ], });
Works with Next.js and Remix.