The command “npm run build — --prod” exited with code 1 error

前端 未结 8 1964
既然无缘
既然无缘 2020-12-24 11:59

I\'m developing an Asp.Net Core 2 and Angular 5 project in visual studio 2017.

When I\'m going to publish my project then the error \'The command \"npm run

8条回答
  •  半阙折子戏
    2020-12-24 12:10

    Perform any of the following options as long as there is an error

    1. For passing an argument to build command:

      change 'npm run build -- --prod' to 'npm run build --prod' in the .csproj file

    2. Open ClientApp folder and Update project angular-cli with this CMD command:

      npm install --save-dev @angular/cli@latest

    3. Update visual studio NodeJS and npm from:

      Tools > Options > Projects and Solutions > Web Package Management > External Web Tools

    If NodeJS and npm aren't installed on your environment path Add NodeJS and npm folder to the top of the list else move $(path) to the top of the list

    .

    Thank @Praveen Kumar and @Yerkon

提交回复
热议问题