docs: emails in cloud (#14040)

* docs: emails in cloud

* add notes to user guides

* small updates

* small change

* fix link

* addressed feedback
This commit is contained in:
Shahed Nasser
2025-11-17 10:54:01 +02:00
committed by GitHub
parent 2c61a413dc
commit 4e1c474dfa
15 changed files with 1174 additions and 16 deletions
+4 -4
View File
@@ -35,8 +35,8 @@ To enable Medusa Cache for your Medusa project deployed on Cloud, set the `cachi
module.exports = defineConfig({
// ...
featureFlags: {
caching: true
}
caching: true,
},
})
```
@@ -70,8 +70,8 @@ const { data: products } = await query.graph({
fields: ["id", "title", "handle"],
}, {
cache: {
enable: true
}
enable: true,
},
})
```