docs: remove imports from src in medusa-config.js (#8132)

Importing from `src` in `medusa-config.js` works in development, but would cause an error when running `build`/in production.

This removes from the docs all snippets that imports from the `src` directory. However, we should figure out a better way to handle re-using the module's name.
This commit is contained in:
Shahed Nasser
2024-07-15 16:00:54 +00:00
committed by GitHub
parent a74c900ab1
commit b38c0488be
3 changed files with 3 additions and 10 deletions
@@ -139,14 +139,10 @@ export default Module(MARKETPLACE_MODULE, {
Finally, add the module to the list of modules in `medusa-config.js`:
```ts title="medusa-config.js"
import { MARKETPLACE_MODULE } from "./src/modules/marketplace"
// ...
module.exports = defineConfig({
// ...
modules: {
[MARKETPLACE_MODULE]: {
marketplaceModuleService: {
resolve: "./modules/marketplace",
definition: {
isQueryable: true,