diff --git a/errors/node-module-in-edge-runtime.md b/errors/node-module-in-edge-runtime.md index e2cc63a126123..0ba79e4aa8ad8 100644 --- a/errors/node-module-in-edge-runtime.md +++ b/errors/node-module-in-edge-runtime.md @@ -10,7 +10,7 @@ However, the Edge Runtime does not support [Node.js APIs and globals](https://ne When running Next.js locally with `next dev`, your application will show in the console, and in your browser, which file is importing and using an unsupported module. This module must be avoided: either by not importing it, or by replacing it with a polyfill. -For example, you might replace the Node.js `crypto` module with the [Web Crypto API](<[https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API](https://nextjs.org/docs/api-reference/edge-runtime#web-crypto-apis)>). +For example, you might replace the Node.js `crypto` module with the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API). ### Useful Links