ProxMenux/web/v0-user-next.config.js
2025-02-13 23:04:40 +01:00

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