diff --git a/docs/guides/edge.md b/docs/guides/edge.md index 00e00e0d..70f9db84 100644 --- a/docs/guides/edge.md +++ b/docs/guides/edge.md @@ -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). -``` \ No newline at end of file +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). diff --git a/docs/reference/plugins/prisma.md b/docs/reference/plugins/prisma.md index 66e1f787..9d99a8c9 100644 --- a/docs/reference/plugins/prisma.md +++ b/docs/reference/plugins/prisma.md @@ -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