How to fix error 'FB' is not defined no-undef on create-react-app project?

后端 未结 5 989
隐瞒了意图╮
隐瞒了意图╮ 2020-12-30 02:51

I made the project using this link as my starting file.

https://github.com/facebookincubator/create-react-app

But after i tried to make Facebook login button

5条回答
  •  Happy的楠姐
    2020-12-30 03:14

    Put this in your .eslintrc file, so you only have to define it once and not in every single file:

    "globals": {
        "FB": true
    }
    

提交回复
热议问题