docs: update resolve path to use src (#9605)

Update path used in `resolve` of modules to start with `src`
This commit is contained in:
Shahed Nasser
2024-10-16 09:10:30 +00:00
committed by GitHub
parent 20428dac71
commit 714b9e6c98
23 changed files with 41 additions and 41 deletions
+2 -2
View File
@@ -134,13 +134,13 @@ module.exports = defineConfig({
},
modules: [
{
resolve: "./modules/hello",
resolve: "./src/modules/hello",
}
]
})
```
Its value is an array of objects, each having a `resolve` property, whose value is either a path to module's directory relative to `src` (it shouldn't include `src` in the path), or an `npm` packages name.
Its value is an array of objects, each having a `resolve` property, whose value is either a path to module's directory, or an `npm` packages name.
### 5. Generate Migrations