nyvora.app/next.config.js
proudparrot2 be1599a8cb radius
2024-04-22 09:39:55 -05:00

15 lines
270 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
trailingSlash: true,
redirects() {
return [
{
source: '/settings',
destination: '/settings/appearance',
permanent: false
}
]
}
}
module.exports = nextConfig