Files
vercel__ai-elements/apps/docs/next.config.mjs
Steven 038f4f7a72 chore(docs): remove next images config (#436)
Removed remotePatterns configuration for images.
2026-05-27 15:53:52 -04:00

39 lines
823 B
JavaScript

import { createMDX } from "fumadocs-mdx/next";
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
redirects() {
return [
{
destination: "/",
permanent: true,
source: "/overview",
},
{
destination: "/examples/chatbot",
permanent: true,
source: "/examples",
},
{
destination: "/components/attachments",
permanent: true,
source: "/components",
},
{
destination: "/examples/chatbot",
permanent: true,
source: "/components/chatbot",
},
{
destination: "https://ui.shadcn.com/docs/components/radix/spinner",
permanent: true,
source: "/components/loader",
},
];
},
};
export default withMDX(config);