rybbit/docs/next.config.mjs
Bill Yang 3e6f028ef6 Update Dockerfile and next.config.mjs for improved application startup and configuration
- Added command to start Next.js in the Dockerfile for proper application initialization.
- Updated next.config.mjs to include output configuration and ensure consistent formatting with semicolons.
2025-04-21 01:10:32 -07:00

14 lines
230 B
JavaScript

import nextra from "nextra";
const withNextra = nextra({
latex: true,
search: {
codeblocks: false,
},
contentDirBasePath: "/docs",
});
export default withNextra({
reactStrictMode: true,
output: "standalone",
});