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

前端 未结 30 2086
花落未央
花落未央 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:32

    In my case, I was getting this running webpack, and it turned out to be some corruption somewhere in the local node_modules dir.

    rm -rf node_modules
    npm install
    

    ...was enough to get it working right again.

提交回复
热议问题