/** @type {import('next').NextConfig} */ const nextConfig = { pageExtensions: ["js", "jsx", "ts", "tsx"], async redirects() { return [ { source: "/docs", destination: "/docs/introduction", permanent: true, }, ] }, } module.exports = nextConfig