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