Schema validation failed with the following errors: Data path “.builders['app-shell']” should have required property 'class'

前端 未结 17 936
无人共我
无人共我 2021-01-31 01:10
Schema validation failed with the following errors:
  Data path \".builders[\'app-shell\']\" should have required property \'class\'.

Schema validation failed with the          


        
相关标签:
17条回答
  • 2021-01-31 01:28

    This is worked for me

    1. npm uninstall @angular-devkit/build-angular
    2. npm install @angular-devkit/build-angular@0.13.0
    0 讨论(0)
  • 2021-01-31 01:34

    I have to say, if you don't want to change anything in package.json file, try to update your Node.js version to latest. (currently 12.13.1 LTS)

    0 讨论(0)
  • 2021-01-31 01:35

    I got this issue when installing Bootstrap.

    The following commands are what worked for me:

    npm uninstall @angular-devkit/build-angular
    
    npm install @angular-devkit/build-angular@0.13.0
    
    0 讨论(0)
  • 2021-01-31 01:36

    Angular Cli 8 support Node Js 10.9+. After update Node.js to 10.16 works fine.

    0 讨论(0)
  • 2021-01-31 01:40

    What i did was to uninstall and install the "^0.13.0". I confirm/ support this last answer. It worked for me as well. I had uninstall version "^0.800.0" and installed the "^0.13.0". rebuild your project it will work fine.

    0 讨论(0)
提交回复
热议问题