mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-04-24 17:59:20 -04:00

* docs: move dev docs to dev-docs folder * docs: move source for doc pages here * docs: improve docs
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
const withNextra = require("nextra")({
|
|
theme: "nextra-theme-docs",
|
|
themeConfig: "./theme.config.jsx",
|
|
});
|
|
|
|
module.exports = withNextra({
|
|
output: "standalone",
|
|
});
|
|
|
|
// If you have other Next.js configurations, you can pass them as the parameter:
|
|
// module.exports = withNextra({ /* other next.js config */ })
|