Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pnpm-lock.yaml
**/node_modules
.astro/**
**/.tmp
aptos-spec.json
public/aptos-spec.json

# MDX files are handled by remark
**/*.mdx
6 changes: 6 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
"request": "launch",
"type": "node-terminal"
},
{
"command": "./node_modules/.bin/astro build",
"name": "Build",
"request": "launch",
"type": "node-terminal"
},
{
"type": "node",
"request": "launch",
Expand Down
3 changes: 2 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ export default defineConfig({
{
base: "rest-api",
label: "REST API",
schema: "./public/aptos-spec.json",
schema:
"https://raw.githubusercontent.com/aptos-labs/aptos-core/refs/heads/main/api/doc/spec.json",
sidebarMethodBadges: true,
},
],
Expand Down
Loading