Skip to content

Commit 098d406

Browse files
committed
double check for hyphens in on-demand rendering
1 parent c568300 commit 098d406

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/content/docs/en/guides/integrations-guide/cloudflare.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ This is available on Cloudflare Workers and Pages.
367367
### Routes
368368
#### Routing on Cloudflare Workers
369369

370-
Routing for static assets is based on the file structure in the build directory (e.g. `./dist`). If no match is found, this will fall back to the Worker for on demand rendering. Read more about [static asset routing with Cloudflare Workers](https://developers.cloudflare.com/workers/static-assets/routing/).
370+
Routing for static assets is based on the file structure in the build directory (e.g. `./dist`). If no match is found, this will fall back to the Worker for on-demand rendering. Read more about [static asset routing with Cloudflare Workers](https://developers.cloudflare.com/workers/static-assets/routing/).
371371

372372
Unlike [Cloudflare Pages](#routing-on-cloudflare-pages), with Workers, you do not need a `_routes.json` file.
373373

src/content/docs/en/guides/integrations-guide/netlify.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Learn how to deploy your Astro site in our [Netlify deployment guide](/en/guides
2525

2626
Astro includes an `astro add` command to automate the setup of official integrations. If you prefer, you can [install integrations manually](#manual-install) instead.
2727

28-
Add the Netlify adapter to enable on demand rendering in your Astro project with the `astro add` command.
28+
Add the Netlify adapter to enable on-demand rendering in your Astro project with the `astro add` command.
2929
This will install `@astrojs/netlify` and make the appropriate changes to your `astro.config.mjs` file in one step.
3030

3131
<PackageManagerTabs>

src/content/docs/en/guides/integrations-guide/node.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you're using Astro as a static site builder, you don't need an adapter.
2323

2424
Astro includes an `astro add` command to automate the setup of official integrations. If you prefer, you can [install integrations manually](#manual-install) instead.
2525

26-
Add the Node adapter to enable on demand rendering in your Astro project with the `astro add` command.
26+
Add the Node adapter to enable on-demand rendering in your Astro project with the `astro add` command.
2727
This will install `@astrojs/node` and make the appropriate changes to your `astro.config.*` file in one step.
2828

2929
<PackageManagerTabs>

src/content/docs/en/guides/integrations-guide/vercel.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Learn how to deploy your Astro site in our [Vercel deployment guide](/en/guides/
3131

3232
Astro includes an `astro add` command to automate the setup of official integrations. If you prefer, you can [install integrations manually](#manual-install) instead.
3333

34-
Add the Vercel adapter to enable on demand rendering in your Astro project with the following `astro add` command. This will install `@astrojs/vercel` and make the appropriate changes to your `astro.config.mjs` file in one step.
34+
Add the Vercel adapter to enable on-demand rendering in your Astro project with the following `astro add` command. This will install `@astrojs/vercel` and make the appropriate changes to your `astro.config.mjs` file in one step.
3535

3636
<PackageManagerTabs>
3737
<Fragment slot="npm">

0 commit comments

Comments
 (0)