Files
haiyushuke-website/next.config.mjs

15 lines
278 B
JavaScript
Raw Normal View History

2026-06-16 14:34:09 +08:00
import nextra from "nextra";
const withNextra = nextra({
contentDirBasePath: "/docs",
search: { codeblocks: true },
});
/** @type {import('next').NextConfig} */
const nextConfig = {
reactCompiler: true,
output: "standalone",
};
export default withNextra(nextConfig);