SDK reference subtitles
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled

This commit is contained in:
Konstantin Wohlwend 2024-11-19 13:24:18 +01:00
parent dd89cc501b
commit 179cec47ee
3 changed files with 58 additions and 12 deletions

View File

@ -162,33 +162,78 @@ navigation:
path: ./docs/pages/sdk/overview.mdx
- section: Objects
contents:
- page: StackApp
- section: StackApp
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/objects/stack-app.mdx
contents:
- link: StackClientApp
icon: fa-duotone fa-square-t
href: /sdk/objects/stack-app#stackclientapp
- link: StackServerApp
icon: fa-duotone fa-square-t
href: /sdk/objects/stack-app#stackserverapp
- section: Types
contents:
- page: ContactChannel
- section: ContactChannel
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/contact-channel.mdx
contents:
- link: ContactChannel
icon: fa-duotone fa-square-t
href: /sdk/types/contact-channel#contactchannel
- link: ServerContactChannel
icon: fa-duotone fa-square-t
href: /sdk/types/contact-channel#servercontactchannel
- page: Project
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/project.mdx
- page: Team
- section: Team
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/team.mdx
contents:
- link: Team
icon: fa-duotone fa-square-t
href: /sdk/types/team#team
- link: ServerTeam
icon: fa-duotone fa-square-t
href: /sdk/types/team#serverteam
- page: TeamPermission
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/team-permission.mdx
- page: TeamProfile
- section: TeamProfile
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/team-profile.mdx
- page: TeamUser
contents:
- link: TeamProfile
icon: fa-duotone fa-square-t
href: /sdk/types/team-profile#teamprofile
- link: ServerTeamProfile
icon: fa-duotone fa-square-t
href: /sdk/types/team-profile#serverteamprofile
- section: TeamUser
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/team-user.mdx
- page: User
contents:
- link: TeamUser
icon: fa-duotone fa-square-t
href: /sdk/types/team-user#teamuser
- link: ServerTeamUser
icon: fa-duotone fa-square-t
href: /sdk/types/team-user#serverteamuser
- section: User
icon: fa-duotone fa-square-t
path: ./docs/pages/sdk/types/user.mdx
# - page: ConnectedAccount
contents:
- link: CurrentUser
icon: fa-duotone fa-square-t
href: /sdk/types/user#currentuser
- link: ServerUser
icon: fa-duotone fa-square-t
href: /sdk/types/user#serveruser
- link: CurrentServerUser
icon: fa-duotone fa-square-t
href: /sdk/types/user#currentserveruser
# - section: ConnectedAccount
# path: ./docs/pages/sdk/types/connected-account.mdx
- section: Hooks
contents:

View File

@ -27,11 +27,8 @@ subtitle: Frequently asked questions about Stack
If you answered "no" to any of these questions, then that's how Stack Auth is different from `<X>`.
</Accordion>
<Accordion title="Can I use Stack with other JavaScript frameworks, like Astro or Angular?">
While you can use any backend framework with Stack, the frontend is tightly integrated with Next.js. If you want to use a different frontend framework, you will have to build the integration ourselves with the client endpoints of our [REST API](/rest-api). Some members of our community have started projects to do this, so you may want to join [our Discord](https://discord.stack-auth.com) to coordinate with them.
</Accordion>
<Accordion title="Can I use Stack with the Next.js pages router?">
Only the Next.js app router is currently supported. However, just like any other unsupported framework, you can use the client endpoints of our [REST API](/rest-api) to build your own integration.
<Accordion title="Can I migrate my existing userbase to Stack Auth?">
Yes! You can [create users programmatically](/rest-api/server/users/create-user) using our [REST API](/rest-api).
</Accordion>
</AccordionGroup>

View File

@ -137,3 +137,7 @@ tr.stack-clickable-row-missing {
.stack-dim-text {
opacity: 0.5;
}
.fern-sidebar-link-content > svg:last-child {
display: none;
}