mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
18 lines
301 B
JavaScript
18 lines
301 B
JavaScript
export const redirectsConfig = [
|
|
{
|
|
source: "/",
|
|
destination: "/start",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/documentation/start",
|
|
destination: "/start",
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: "/usage/introduction",
|
|
destination: "/usage/setup",
|
|
permanent: true,
|
|
},
|
|
];
|