Skip to content

Commit

Permalink
docs: add missing customAttributesAsComments option to prisma plugin (
Browse files Browse the repository at this point in the history
  • Loading branch information
ymc9 authored Nov 13, 2024
1 parent 8bde970 commit 3274ff0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 3274ff0

Please sign in to comment.