From 87d37dd29edcd53d0a5d1bb8b3f2859b235ceebb Mon Sep 17 00:00:00 2001 From: Colin Frei Date: Sun, 18 Jul 2021 12:01:08 +0200 Subject: [PATCH] typo (#1086) build:dev:watch requires a development.json file, not development.js Causes the error "[webpack-cli] Error: Cannot find module './config/development.json'" otherwise. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 783438cb895..bb5cda42997 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ npm install ENV=production npm run build:watch ``` -You can also manually adjusting your API endpoint settings by adding `config/development.js` overriding any of the values in `config/base.json`. For example: +You can also manually adjusting your API endpoint settings by adding `config/development.json` overriding any of the values in `config/base.json`. For example: ```typescript { @@ -57,7 +57,7 @@ You can also manually adjusting your API endpoint settings by adding `config/dev } ``` -To pick up the overrides in the newly created `config/development.js` file, run the app with: +To pick up the overrides in the newly created `config/development.json` file, run the app with: ``` npm run build:dev:watch