Skip to content

Commit 05ea0fd

Browse files
[KV] Modified note to workers kv example with static assets to explain when to use KV vs workers assets (cloudflare#17137)
* thomasgauvin: modified note to workers kv example with static assets to explain when to use KV vs workers assets * Update src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx Co-authored-by: Greg Brimble <[email protected]> * Update src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx --------- Co-authored-by: Greg Brimble <[email protected]>
1 parent 76f1a73 commit 05ea0fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Render, PackageManagers } from "~/components";
1515
By storing static assets in Workers KV, you can retrieve these assets globally with low-latency and high throughput. You can then serve these assets directly, or use them to dynamically generate responses. This can be useful when serving files and images, or when generating dynamic HTML responses from static assets such as translations.
1616

1717
:::note[Note]
18-
This example demonstrates how to access data and assets from KV and use them to generate static and dynamic responses. If you want to serve static assets of a frontend web application, consider using [Cloudflare Pages](/pages/) or [Workers static assets](/workers/static-assets/) which provide a purpose-built experience for web applications with built-in environments, CI/CD, Workers/Pages Functions for dynamic responses, and more.
18+
With [Workers KV](/kv), you can access, edit and store assets directly from your [Worker](/workers). If you need to serve assets as part of a front-end or full-stack web application, consider using [Cloudflare Pages](/pages/) or [Workers static assets](/workers/static-assets/), which provide a purpose-built deployment experience for web applications and their assets.
1919
:::
2020

2121
<Render file="tutorials-before-you-start" product="workers" />

0 commit comments

Comments
 (0)