docs/next.config.js

13 lines
203 B
JavaScript
Raw Normal View History

2023-07-22 13:25:44 +01:00
const withNextra = require("nextra")({
theme: "nextra-theme-docs",
themeConfig: "./theme.config.jsx",
})
module.exports = {
...withNextra(),
basePath: "/docs",
images: {
unoptimized: true,
},
}