From 177240c26e04680c1596dbd2350d3512ff4e1ef3 Mon Sep 17 00:00:00 2001 From: Tim Lai Date: Fri, 25 Mar 2022 12:09:04 -0700 Subject: [PATCH] docs(dev): update dev-helpers installation (#7948) --- docs/development/setting-up.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/setting-up.md b/docs/development/setting-up.md index 2290a46c..d893efb2 100644 --- a/docs/development/setting-up.md +++ b/docs/development/setting-up.md @@ -32,7 +32,7 @@ Current Node.js Maintenance LTS: ### Using your own local api definition with local dev build -You can specify a local file in `dev-helpers/index.html` by changing the `url` parameter. This local file MUST be located in the `dev-helpers` directory or a subdirectory. As a convenience and best practice, we recommend that you create a subdirectory, `dev-helpers/examples`, which is already specified in `.gitignore`. +You can specify a local file in `dev-helpers/swagger-initializer.js` by changing the `url` parameter. This local file MUST be located in the `dev-helpers` directory or a subdirectory. As a convenience and best practice, we recommend that you create a subdirectory, `dev-helpers/examples`, which is already specified in `.gitignore`. replace ``` @@ -44,7 +44,7 @@ with url: "./examples/your-local-api-definition.yaml", ``` -Files in `dev-helpers` should NOT be committed to git. The exception is if you are fixing something in `index.html` or `oauth2-redirect.html`, or introducing a new support file. +Files in `dev-helpers` should NOT be committed to git. The exception is if you are fixing something in `index.html`, `oauth2-redirect.html`, `swagger-initializer.js`, or introducing a new support file. ## Bonus points