mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-10 20:05:38 +02:00
- 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.
14 lines
230 B
JavaScript
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",
|
|
});
|