Files
Radius/next.config.js
T

16 lines
265 B
JavaScript

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