mirror of
https://github.com/lune-org/docs.git
synced 2024-12-12 04:50:36 +00:00
12 lines
203 B
JavaScript
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,
|
|
},
|
|
}
|