mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
17 lines
296 B
JavaScript
17 lines
296 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
pageExtensions: ["js", "jsx", "ts", "tsx"],
|
||
|
async redirects() {
|
||
|
return [
|
||
|
{
|
||
|
source: "/docs",
|
||
|
destination: "/docs/introduction",
|
||
|
permanent: true,
|
||
|
},
|
||
|
]
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|
||
|
|