office/app/next.config.js
2023-03-05 02:32:54 -05:00

12 lines
213 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
redirects: async () => [
{
source: '/u/:slug*',
destination: '/url/:slug*',
permanent: true
}
]
}