Skip to content

Commit

Permalink
preparing the redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Aug 10, 2024
1 parent 4d09210 commit f869d8e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const nextConfig = {
destination: '/:slug*',
permanent: true,
},
//
{
source: '/xr',
destination: '/xr/getting-started/introduction',
Expand Down Expand Up @@ -59,6 +60,37 @@ const nextConfig = {
destination: 'https://github.com/pmndrs/drei#:slug*',
permanent: true,
},
//
{
source: '/react-three-fiber/:slug*',
destination: 'https://pmndrs.github.io/react-three-fiber/:slug*',
permanent: true,
},
// {
// source: '/zustand/:slug*',
// destination: 'https://pmndrs.github.io/zustand/:slug*',
// permanent: true,
// },
// {
// source: '/a11y/:slug*',
// destination: 'https://pmndrs.github.io/a11y/:slug*',
// permanent: true,
// },
// {
// source: '/react-postprocessing/:slug*',
// destination: 'https://pmndrs.github.io/react-postprocessing/:slug*',
// permanent: true,
// },
// {
// source: '/uikit/:slug*',
// destination: 'https://pmndrs.github.io/uikit/:slug*',
// permanent: true,
// },
// {
// source: '/xr/:slug*',
// destination: 'https://pmndrs.github.io/xr/:slug*',
// permanent: true,
// },
]
},
}
Expand Down

0 comments on commit f869d8e

Please sign in to comment.