From c9cadcb198656c003c25959f6ce0b0fd1260f287 Mon Sep 17 00:00:00 2001 From: David Raphi Date: Thu, 17 Apr 2025 01:14:53 +0530 Subject: [PATCH] docs: correct typo in wrangler.toml example for polyfill --- src/content/docs/workers/wrangler/configuration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/workers/wrangler/configuration.mdx b/src/content/docs/workers/wrangler/configuration.mdx index 2dc3c32f91a1c5b..c01fd1bc05782d9 100644 --- a/src/content/docs/workers/wrangler/configuration.mdx +++ b/src/content/docs/workers/wrangler/configuration.mdx @@ -1186,12 +1186,12 @@ You can alias all imports of `node-fetch` to instead point directly to the `fetc ```toml title="wrangler.toml" [alias] -"node-fetch" = "./fetch-nolyfill" +"node-fetch" = "./fetch-polyfill" ``` -```js title="./fetch-nolyfill" +```js title="./fetch-polyfill" export default fetch; ```