Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update configuration.md
Add documentation of custom output directory in either the package.json or forge.config.js locations.
  • Loading branch information
eliotschu authored Dec 31, 2024
commit 47e5cc2142a4b60d0a34eab5e6e57b4c70bd781f
6 changes: 4 additions & 2 deletions config/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ module.exports = {
publishers: [],
plugins: [],
hooks: { /* ... */ },
buildIdentifier: 'my-build'
buildIdentifier: 'my-build',
outDir: 'desired/outpath'
};
```
{% endtab %}
Expand All @@ -82,7 +83,8 @@ module.exports = {
"publishers": [ ... ],
"plugins": [ ... ],
"hooks": { ... },
"buildIdentifier": "my-build"
"buildIdentifier": "my-build",
"outDir": "desired/outpath"
}
}
}
Expand Down
Loading