mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-18 16:01:18 +00:00
20 lines
710 B
JavaScript
20 lines
710 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
// `next build` writes the whole site to `out/`, servable from any static host.
|
|
output: 'export',
|
|
// Pages export as `<path>/index.html` so URLs resolve on any static server.
|
|
trailingSlash: true,
|
|
reactStrictMode: true,
|
|
// Static export has no image optimizer; fumadocs maps MDX `img` to next/image.
|
|
images: { unoptimized: true },
|
|
// This app has its own lockfile alongside the repo root one; pin the workspace
|
|
// root to silence Next's "multiple lockfiles" inference warning.
|
|
turbopack: { root: import.meta.dirname },
|
|
};
|
|
|
|
export default withMDX(config);
|