mirror of
https://github.com/smyalygames/flightsim-on-linux.git
synced 2025-05-18 14:14:13 +02:00
23 lines
600 B
JavaScript
23 lines
600 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './src/theme.config.tsx',
|
|
})
|
|
|
|
module.exports = withNextra({
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/msfs/utils/navigraphHub',
|
|
destination: '/msfs/utils/navigraph-hub',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/msfs/utils/navigraphSimlink',
|
|
destination: '/msfs/utils/navigraph-simlink',
|
|
permanent: true,
|
|
}
|
|
]
|
|
}
|
|
})
|