next.config.js 257 B

1234567891011121314
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. async redirects() {
  4. return [
  5. {
  6. source: "/docs/components",
  7. destination: "/docs/registry",
  8. permanent: true,
  9. },
  10. ];
  11. },
  12. };
  13. export default nextConfig;