From 47e5cc2142a4b60d0a34eab5e6e57b4c70bd781f Mon Sep 17 00:00:00 2001 From: eliotschu Date: Tue, 31 Dec 2024 16:16:18 -0600 Subject: [PATCH] Update configuration.md Add documentation of custom output directory in either the package.json or forge.config.js locations. --- config/configuration.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/configuration.md b/config/configuration.md index ec3ffdf..8761a19 100644 --- a/config/configuration.md +++ b/config/configuration.md @@ -65,7 +65,8 @@ module.exports = { publishers: [], plugins: [], hooks: { /* ... */ }, - buildIdentifier: 'my-build' + buildIdentifier: 'my-build', + outDir: 'desired/outpath' }; ``` {% endtab %} @@ -82,7 +83,8 @@ module.exports = { "publishers": [ ... ], "plugins": [ ... ], "hooks": { ... }, - "buildIdentifier": "my-build" + "buildIdentifier": "my-build", + "outDir": "desired/outpath" } } }