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; ```