Update worker_mode description as environment (#12894)

This commit is contained in:
Danilo Silva
2025-07-14 10:51:07 +03:00
committed by GitHub
parent be7a5b802f
commit 839efaf7d7
@@ -758,7 +758,7 @@ The value for this configuration can be one of the following:
```ts title="medusa-config.ts" ```ts title="medusa-config.ts"
module.exports = defineConfig({ module.exports = defineConfig({
projectConfig: { projectConfig: {
workerMode: process.env.WORKER_MODE || "shared", workerMode: process.env.WORKER_MODE as "shared" | "worker" | "server" || "shared",
// ... // ...
}, },
// ... // ...