From 83ee22f13a075810a925e9f1b244591e82e00c31 Mon Sep 17 00:00:00 2001 From: Louis Charette Date: Fri, 22 Mar 2024 15:24:08 -0400 Subject: [PATCH] Fix installation instructions (Ref #12) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fe9ea9e..b75df9f 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,9 @@ To install in your Sprinkle : npm i --save @lcharette/configmanager ``` -4. Add Config Manager frontend entries to your webpack entries. Open `webpack.config.js` and add in `const sprinkles { ... }`: +4. Add Config Manager & FormGenerator frontend entries to your webpack entries. Open `webpack.config.js` and add in `const sprinkles { ... }`: ``` + FormGenerator: require('@lcharette/formgenerator/webpack.entries'), ConfigManager: require('@lcharette/configmanager/webpack.entries'), ```