docs/next.config.js
2023-07-22 14:25:44 +02:00

12 lines
203 B
JavaScript

const withNextra = require("nextra")({
theme: "nextra-theme-docs",
themeConfig: "./theme.config.jsx",
})
module.exports = {
...withNextra(),
basePath: "/docs",
images: {
unoptimized: true,
},
}