refactor(docs): move source for doc pages here (#119)

* docs: move dev docs to dev-docs folder

* docs: move source for doc pages here

* docs: improve docs
This commit is contained in:
Einliterflasche 2024-10-25 03:55:18 +02:00 committed by GitHub
parent 5341587dfa
commit bfc82c0534
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 6307 additions and 0 deletions

11
docs/next.config.js Normal file
View file

@ -0,0 +1,11 @@
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 */ })