Create react app Error: Cannot find module './locale'

前端 未结 5 1592
隐瞒了意图╮
隐瞒了意图╮ 2020-12-17 08:15

I bootstrapped my application with create-react-app and when I run my app it compiles with warnings and it throws errors on the browser.

Error while com

5条回答
  •  Happy的楠姐
    2020-12-17 08:55

    Just follow these steps:-

    step 1: npm install --save-dev npm-force-resolutions

    step 2: add in package.json

    "resolutions": {
        "moment": "2.24.0"
     }
    

    step 3: add in scripts in package.json

    "preinstall": "npx npm-force-resolutions"
    

    step 4: npm install

提交回复
热议问题