redirect www

This commit is contained in:
saml33 2024-03-07 14:35:23 +11:00
parent 09b334d77c
commit bed2af51b8
2 changed files with 7 additions and 1 deletions

View File

@ -25,6 +25,12 @@ const nextConfig = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/:path*',
has: [{ type: 'host', value: 'www.mango.markets' }],
destination: 'https://mango.markets/:path*',
permanent: true,
},
{
source: '/explore',
destination: '/explore/tokens',

File diff suppressed because one or more lines are too long