mirror of
https://github.com/lune-org/docs.git
synced 2024-12-12 13:00:37 +00:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
|
const withNextra = require("nextra")({
|
||
|
theme: "nextra-theme-docs",
|
||
|
themeConfig: "./theme.config.jsx",
|
||
|
})
|
||
|
|
||
|
module.exports = {
|
||
|
...withNextra(),
|
||
|
basePath: "/docs",
|
||
|
images: {
|
||
|
unoptimized: true,
|
||
|
},
|
||
|
}
|