Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 1 addition & 2 deletions docs/guides/edge.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,4 @@ export default {
Cloudflare's [D1 database](https://developers.cloudflare.com/d1/) is not yet supported by ZenStack due to its lack of support for interactive transactions.
:::

If you need a more sophisticated backend running on Cloudflare Workers, [Hono](https://hono.dev/) is a great choice. Check [how you can use ZenStack with Hono](https://zenstack.dev/docs/reference/server-adapters/hono).
```
If you need a more sophisticated backend running on Cloudflare Workers, [Hono](https://hono.dev/) is a great choice. Check [how you can use ZenStack with Hono](../reference/server-adapters/hono).
1 change: 1 addition & 0 deletions docs/reference/plugins/prisma.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ This plugin is built-in to ZenStack and does not need to be installed separately
| generateClient | Boolean | Whether to run `prisma generate` after generation | No | true |
| generateArgs | String | Command line arguments appended to the `prisma generate` call, e.g., "--no-engine". Please note that the "--schema" option is automatically passed, and you shouldn't provide it explicitly. | No | |
| format | Boolean | Whether to run `prisma format` after generation | No | true |
| customAttributesAsComments | Boolean | Whether to generate non-Prisma attributes (e.g., `@@allow`) as comments in the Prisma schema | No | false |

### Example

Expand Down