mirror of
https://github.com/trycua/computer.git
synced 2026-01-01 02:50:15 -06:00
63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
trailingSlash: false,
|
|
basePath: '/docs',
|
|
assetPrefix: '/docs',
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/:path*.mdx',
|
|
destination: '/llms.mdx/:path*',
|
|
},
|
|
];
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/docs',
|
|
basePath: false, // Important: this bypasses the basePath
|
|
permanent: false,
|
|
},
|
|
// Redirect old docs.cua.ai URLs to cua.ai/docs with 301 for SEO
|
|
// This handles URLs that Google has indexed from the old domain
|
|
{
|
|
source: '/:path*',
|
|
has: [
|
|
{
|
|
type: 'host',
|
|
value: 'docs.cua.ai',
|
|
},
|
|
],
|
|
destination: 'https://cua.ai/docs/:path*',
|
|
permanent: true, // 301 redirect to preserve SEO authority
|
|
basePath: false,
|
|
},
|
|
];
|
|
},
|
|
images: {
|
|
dangerouslyAllowSVG: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img.shields.io',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'starchart.cc',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'github.com',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withMDX(config);
|