mirror of
https://github.com/vitalityAI/office.git
synced 2025-04-09 14:00:17 -04:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
redirects: async () => [
|
|
{
|
|
source: '/u/:slug*',
|
|
destination: '/url/:slug*',
|
|
permanent: true
|
|
}
|
|
]
|
|
}
|