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:
parent
8781faaddf
commit
777563940e
1 changed files with 12 additions and 0 deletions
|
|
@ -15,6 +15,18 @@ module.exports = {
|
|||
source: '/',
|
||||
destination: '/new',
|
||||
},
|
||||
{
|
||||
source: '/characters',
|
||||
destination: '/new',
|
||||
},
|
||||
{
|
||||
source: '/summons',
|
||||
destination: '/new',
|
||||
},
|
||||
{
|
||||
source: '/weapons',
|
||||
destination: '/new',
|
||||
},
|
||||
{
|
||||
source: '/p/:shortcode/characters',
|
||||
destination: '/p/:shortcode',
|
||||
|
|
|
|||
Loading…
Reference in a new issue