15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
|
|
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);
|