From 0e35457c0f80fd29893dc982d734a14f53cde88c Mon Sep 17 00:00:00 2001 From: alexanderniebuhr Date: Thu, 28 Sep 2023 16:07:09 +0000 Subject: [PATCH] [ci] format --- packages/integrations/cloudflare/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/integrations/cloudflare/README.md b/packages/integrations/cloudflare/README.md index c0a967c4a..0e84e451f 100644 --- a/packages/integrations/cloudflare/README.md +++ b/packages/integrations/cloudflare/README.md @@ -130,6 +130,7 @@ There are three options available: ``` ### `routes.include` + `routes.include: string[]` default `[]` @@ -137,6 +138,7 @@ default `[]` If you want to use the automatic `_routes.json` generation, but want to include additional routes (e.g. when having custom functions in the `functions` folder), you can use the `routes.include` option to add additional routes to the `include` array. ### `routes.exclude` + `routes.exclude: string[]` default `[]` @@ -220,6 +222,7 @@ You can access the runtime from Astro components through `Astro.locals` inside a // src/pages/index.astro const runtime = Astro.locals.runtime; --- +
{JSON.stringify(runtime.env)}
```