Search code examples
heroku

(node:18768) SyntaxError Plugin: heroku?


Is it posible to modifiy the config.json to solve this heroku error?

I'm getting this error from heroku:

(node:18768) SyntaxError Plugin: heroku: 
C:\Users\usuario\AppData\Local\heroku\config.json: Unexpected string in JSON at position 72

and i'm not sure if I should change the file content and add the } that is missing or if may get into big trouble and mess the whole thing:

{
  "schema": 1,
  "install": "5103b005-d953-4bce-8c79-2af625dee7a6"
}
 "skipAnalytics": false
}

Thanks


Solution

  • You've got 1 open bracket and 2 closed brackets. skipAnalytics needs to be brought inside the brackets or else you'll get the JSON parse error you're seeing there.