| 1234567891011121314151617181920 |
- import createMDX from "@next/mdx";
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- serverExternalPackages: ["bash-tool", "just-bash", "@mongodb-js/zstd"],
- pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
- async redirects() {
- return [
- {
- source: "/docs/components",
- destination: "/docs/registry",
- permanent: true,
- },
- ];
- },
- };
- const withMDX = createMDX({});
- export default withMDX(nextConfig);
|