Skip to content

Commit

Permalink
add docs pages
Browse files Browse the repository at this point in the history
  • Loading branch information
shakiba committed Apr 29, 2024
1 parent f089bb0 commit 7caf150
Show file tree
Hide file tree
Showing 74 changed files with 15,343 additions and 4 deletions.
40 changes: 36 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,39 @@
node_modules/
.idea
# misc
.DS_Store
*.pem

**/ignore
**/ignore.*
# dependencies
node_modules
.pnp
.pnp.js

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local
.env

# testing
/coverage
/.nyc_output

# production
build

# next.js
.next/
# out/

# vercel
.vercel

# ide
.idea/
.vscode*/

# typescript
*.tsbuildinfo
next-env.d.ts
10 changes: 10 additions & 0 deletions docs/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const nextra = require('nextra')

const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
});

module.exports = withNextra({
basePath: "/planck.js/docs",
});
Loading

0 comments on commit 7caf150

Please sign in to comment.