This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
www-v0/next.config.js
2022-03-30 09:55:51 -03:00

20 lines
331 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
extends: ['plugin:@next/next/recommended'],
async redirects() {
return [
{
source: '/2022',
destination: '/202X',
permanent: true,
},
{
source: '/2023',
destination: '/202X',
permanent: true,
},
];
},
};