m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-15 08:33:49 -05:00

Add documentation

This commit is contained in:
Sergio
2024-07-17 14:28:49 +03:00
parent 0fac554fae
commit a822a616be
27 changed files with 4767 additions and 0 deletions

16
docs/next.config.js Normal file
View File

@@ -0,0 +1,16 @@
const withNextra = require("nextra")({
theme: "nextra-theme-docs",
themeConfig: "./theme.config.jsx",
});
module.exports = withNextra(
{
output: "export",
images: {
unoptimized: true
}
}
);
// If you have other Next.js configurations, you can pass them as the parameter:
// module.exports = withNextra({ /* other next.js config */ })