Files
wehub-resource-sync c48612c494
CI / E2E Tests (push) Has been cancelled
CI / Lint, Typecheck & Unit Tests (push) Has been cancelled
Docs Build / Build docs site (push) Has been cancelled
Publish @openmaic packages / Build, validate & publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:23 +08:00

20 lines
504 B
JavaScript

import { createMDX } from 'fumadocs-mdx/next';
import { DOCS_BASE_PATH } from './lib/locales.mjs';
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
// Static export: served as plain files by nginx, no Node server.
output: 'export',
// Target deploy path: open.maic.chat/docs
basePath: DOCS_BASE_PATH,
// Static export cannot optimize images at runtime.
images: {
unoptimized: true,
},
};
export default withMDX(config);