Fix tab URLs

The app was crashing when you went to another tab on new pages because the rewrites were only configured for URLs with shortcodes
This commit is contained in:
Justin Edmund 2023-01-23 02:44:48 -08:00
parent 8781faaddf
commit 777563940e

View file

@ -15,6 +15,18 @@ module.exports = {
source: '/', source: '/',
destination: '/new', destination: '/new',
}, },
{
source: '/characters',
destination: '/new',
},
{
source: '/summons',
destination: '/new',
},
{
source: '/weapons',
destination: '/new',
},
{ {
source: '/p/:shortcode/characters', source: '/p/:shortcode/characters',
destination: '/p/:shortcode', destination: '/p/:shortcode',