From 137b6739fbfa7751e0b0dded9e22cfcbee23707c Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz Date: Tue, 8 Oct 2024 17:43:31 +0100 Subject: [PATCH] fix broken link in qr-code-generator tutorial --- .../docs/workers/tutorials/build-a-qr-code-generator/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx b/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx index 98ae266d360d682..e7214ab90568040 100644 --- a/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx +++ b/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx @@ -150,7 +150,7 @@ async function generateQRCode(request) { } ``` -The `qr-image` package you installed depends on Node.js APIs. For this to work, you need to set the ("nodejs_compat_v2" compatibility flag)(/workers/runtime-apis/nodejs/#enable-nodejs-with-workers) in your Wrangler configuration file: +The `qr-image` package you installed depends on Node.js APIs. For this to work, you need to set the ["nodejs_compat_v2" compatibility flag](/workers/runtime-apis/nodejs/#enable-nodejs-with-workers) in your Wrangler configuration file: ```toml compatibility_flags = [ "nodejs_compat_v2"]