diff options
author | 2023-09-28 16:07:09 +0000 | |
---|---|---|
committer | 2023-09-28 16:07:09 +0000 | |
commit | 0e35457c0f80fd29893dc982d734a14f53cde88c (patch) | |
tree | 535e87c0a6205d67db36dcf9c05b65f9cfc5ceed | |
parent | f6ba533df6861e09d39a29f6ef7a80271bbc8d0a (diff) | |
download | astro-0e35457c0f80fd29893dc982d734a14f53cde88c.tar.gz astro-0e35457c0f80fd29893dc982d734a14f53cde88c.tar.zst astro-0e35457c0f80fd29893dc982d734a14f53cde88c.zip |
[ci] format
-rw-r--r-- | packages/integrations/cloudflare/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
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; --- + <pre>{JSON.stringify(runtime.env)}</pre> ``` |