Skip to content

Commit a3d1c39

Browse files
authored
Apply suggestions from code review
1 parent 669886f commit a3d1c39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/content/docs/workers/static-assets/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default {
8787

8888
By default, if a requested URL matches a file in the static assets directory, that file will always be served — without running Worker code. If no matching asset is found and a Worker is configured, the request will be processed by the Worker instead.
8989

90-
- If no Worker is set up, the [`not_found_handling`](/workers/static-assets/routing/#not_found_handling-1) setting in your Wrangler configuration determines what happens next. By default, a `404 Not Found` response is returned.
90+
- If no Worker is set up, the [`not_found_handling`](/workers/static-assets/routing/#2-not_found_handling-1) setting in your Wrangler configuration determines what happens next. By default, a `404 Not Found` response is returned.
9191

9292
- If a Worker is configured and a request does not match a static asset, the Worker will handle the request. The Worker can choose to pass the request to the asset binding (through `env.ASSETS.fetch()`), following the `not_found_handling` rules.
9393

src/content/docs/workers/wrangler/configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: Use a configuration file to customize the
99
Platform products.
1010
---
1111

12-
import { Render, Type, MetaInfo, WranglerConfig, Details } from "~/components";
12+
import { Render, Type, MetaInfo, WranglerConfig } from "~/components";
1313
import { FileTree } from "@astrojs/starlight/components";
1414

1515
Wrangler optionally uses a configuration file to customize the development and deployment setup for a Worker.

0 commit comments

Comments
 (0)