mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
5873baad3c
Co-Authored-By: Craft Agent <agents-noreply@craft.do>
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,
|
|
},
|
|
];
|