docs: general updates and fixes (#13374)

* docs: general updates and fixes

* fix lint errors
This commit is contained in:
Shahed Nasser
2025-09-02 09:07:07 +03:00
committed by GitHub
parent c717535ca2
commit 24199fa47a
25 changed files with 477 additions and 396 deletions
@@ -10,7 +10,7 @@ export const metadata = {
# {metadata.title}
In this document, you'll learn about the options of the Payment Module.
In this document, you'll learn about the options you can pass to the Payment Module.
## All Module Options
@@ -97,7 +97,7 @@ In this document, you'll learn about the options of the Payment Module.
## providers Option
The `providers` option is an array of payment module providers.
The `providers` option is an array of payment module providers to be registered in your Medusa application.
When the Medusa application starts, these providers are registered and can be used to process payments.
@@ -131,6 +131,8 @@ module.exports = defineConfig({
The `providers` option is an array of objects that accept the following properties:
- `resolve`: A string indicating the package name of the module provider or the path to it relative to the `src` directory.
- `resolve`: A string indicating the package name of the module provider or the path to it.
- `id`: A string indicating the provider's unique name or ID.
- `options`: An optional object of the module provider's options.
- `options`: An optional object of the module provider's options.
Refer to the [Payment Module Providers](../payment-provider/page.mdx) documentation to learn more.