Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ description: Example of how to use Workers KV to store static assets

import { Render, PackageManagers, TabItem, Tabs } from "~/components";

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.
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 such as custom scripts, small images that fit within [KV limits](/kv/platform/limits/), or when generating dynamic HTML responses from static assets such as translations.

:::note[Note]
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.
[Workers KV](/kv) allows you to access, edit and store assets directly from your [Worker](/workers). If you need to host a front-end or full-stack web application, use [Cloudflare Workers static assets](/workers/static-assets/) or [Cloudflare Pages](/pages/), which provide a purpose-built deployment experience for web applications and their assets.
:::

## Write static assets to Workers KV using Wrangler
Expand Down
Loading