Make sure that you’re not just copy and pasting blindly into your config file.
After each
modules: [
{
etc
},
Note the comma , after the module. That comma should only be there if there are more modules.
Likewise, if you’re pasting it last, you need to make sure the module before it has one, to let the script know there are more modules after the previous one.
So the pattern is
modules: [
{
   module: ‘firstModule’,
   config: {
   option : ""
   }
}, <<< COMMA HERE
modules: [
{
   module: ‘middleModule’,
   config: {
   option : ""
   }
}, <<< COMMA HERE
modules: [
{
   module: ‘last module’,
   config: {
   option : ""
   }
} <<<<< NO COMMA
hope that makes sense. hopefully that’s the problem.


