From de53f2a8266b9181b7bc0ed7a4a22cd1ffe65054 Mon Sep 17 00:00:00 2001 From: Sasha <64744993+r1tsuu@users.noreply.github.com> Date: Thu, 5 Dec 2024 21:38:16 +0200 Subject: [PATCH] docs: adds missing "to" in jobs-queue/overview (#9778) Adds missing "to": "offload these tasks a separate compute resource" -> "offload these tasks **_to_** a separate compute resource". --- docs/jobs-queue/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/jobs-queue/overview.mdx b/docs/jobs-queue/overview.mdx index 1ecbcd3d3..f941c767f 100644 --- a/docs/jobs-queue/overview.mdx +++ b/docs/jobs-queue/overview.mdx @@ -42,7 +42,7 @@ Examples: **Offloading complex operations** -You may run into the need to perform computationally expensive functions which might slow down your main Payload API server(s). The Jobs Queue allows you to offload these tasks a separate compute resource rather than slowing down the server(s) that run your Payload APIs. With Payload Task definitions, you can even keep large dependencies out of your main Next.js bundle by dynamically importing them only when they are used. This keeps your Next.js + Payload compilation fast and ensures large dependencies do not get bundled into your Payload production build. +You may run into the need to perform computationally expensive functions which might slow down your main Payload API server(s). The Jobs Queue allows you to offload these tasks to a separate compute resource rather than slowing down the server(s) that run your Payload APIs. With Payload Task definitions, you can even keep large dependencies out of your main Next.js bundle by dynamically importing them only when they are used. This keeps your Next.js + Payload compilation fast and ensures large dependencies do not get bundled into your Payload production build. Examples: