Updated redirect config.
Some checks are pending
Node.js CI / build (postgresql, 18.18) (push) Waiting to run

This commit is contained in:
Mike Cao 2025-09-17 22:41:54 -07:00
parent a84b890b23
commit 1c7f9da320

View file

@ -117,22 +117,22 @@ const redirects = [
{ {
source: '/settings', source: '/settings',
destination: '/settings/preferences', destination: '/settings/preferences',
permanent: true, permanent: false,
}, },
{ {
source: '/teams/:id', source: '/teams/:id',
destination: '/teams/:id/websites', destination: '/teams/:id/websites',
permanent: true, permanent: false,
}, },
{ {
source: '/teams/:id/settings', source: '/teams/:id/settings',
destination: '/teams/:id/settings/preferences', destination: '/teams/:id/settings/preferences',
permanent: true, permanent: false,
}, },
{ {
source: '/admin', source: '/admin',
destination: '/admin/users', destination: '/admin/users',
permanent: true, permanent: false,
}, },
]; ];