“SyntaxError: Unexpected token < in JSON at position 0”

前端 未结 30 2129
花落未央
花落未央 2020-11-22 04:39

In a React app component which handles Facebook-like content feeds, I am running into an error:

Feed.js:94 undefined \"parsererror\" \"SyntaxError: Un

30条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-22 05:30

    The possibilities for this error are overwhelming.

    In my case, I found that the issue was adding the homepage filed in package.json caused the issue.

    Worth checking: in package.json change:

    homepage: "www.example.com"
    

    to

    hompage: ""   
    

提交回复
热议问题