尝试构建 Angular 构建时收到错误
Receiving error while try to build Angular build
我正在尝试为 Production
构建我的 Angular Application
。
当我尝试时
ng build --prod
我收到这个错误
Option "--prod" is deprecated: Use "--configuration production" instead.
Option "extractCss" is deprecated: Deprecated since version 11.0. No longer required to disable CSS extraction for HMR.
⠋ Generating browser application bundles (phase: setup)...An unhandled exception occurred: ENOENT: no such file or directory, lstat '/Users/xxx/Documents/GitHub/spa/node_modules/primeng/resources/themes/nova-light'
See "/private/var/folders/ft/644bz6_17vj4yr0q_j3wxzdm0000gn/T/ng-wiA0sW/angular-errors.log" for further details.
之后,我试过了
ng build -- --prod
我收到这个错误
Unknown option: '--prod'
所以我又试了一次
npm run build -- --prod
我收到这个错误
Option "--prod" is deprecated: Use "--configuration production" instead.
Option "extractCss" is deprecated: Deprecated since version 11.0. No longer required to disable CSS extraction for HMR.
⠋ Generating browser application bundles (phase: setup)...An unhandled exception occurred: ENOENT: no such file or directory, lstat '/Users/xx/Documents/GitHub/spa/node_modules/primeng/resources/themes/nova-light'
See "/private/var/folders/ft/644bz6_17vj4yr0q_j3wxzdm0000gn/T/ng-0IJZJW/angular-errors.log" for further details.
npm ERR! code ELIFECYCLE
npm ERR! syscall spawn
npm ERR! file sh
npm ERR! errno ENOENT
npm ERR! app@0.0.0 build: `ng build --prod "--prod"`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the app@0.0.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/xx/.npm/_logs/2021-08-01T21_01_45_518Z-debug.log
我也偶然发现了这个。如果你纯粹是Angular,那么
ng build --configuration production
如果您的项目有 ng + API 节点后端,例如 Azure 静态 Web 应用程序,那么
npm run build --configuration
注意:不要这样做 npm run build --configuration production
,它会产生
ng build --prod "production" An unhandled exception occurred: Project
'production' does not exist.
我正在尝试为 Production
构建我的 Angular Application
。
当我尝试时
ng build --prod
我收到这个错误
Option "--prod" is deprecated: Use "--configuration production" instead.
Option "extractCss" is deprecated: Deprecated since version 11.0. No longer required to disable CSS extraction for HMR.
⠋ Generating browser application bundles (phase: setup)...An unhandled exception occurred: ENOENT: no such file or directory, lstat '/Users/xxx/Documents/GitHub/spa/node_modules/primeng/resources/themes/nova-light'
See "/private/var/folders/ft/644bz6_17vj4yr0q_j3wxzdm0000gn/T/ng-wiA0sW/angular-errors.log" for further details.
之后,我试过了
ng build -- --prod
我收到这个错误
Unknown option: '--prod'
所以我又试了一次
npm run build -- --prod
我收到这个错误
Option "--prod" is deprecated: Use "--configuration production" instead.
Option "extractCss" is deprecated: Deprecated since version 11.0. No longer required to disable CSS extraction for HMR.
⠋ Generating browser application bundles (phase: setup)...An unhandled exception occurred: ENOENT: no such file or directory, lstat '/Users/xx/Documents/GitHub/spa/node_modules/primeng/resources/themes/nova-light'
See "/private/var/folders/ft/644bz6_17vj4yr0q_j3wxzdm0000gn/T/ng-0IJZJW/angular-errors.log" for further details.
npm ERR! code ELIFECYCLE
npm ERR! syscall spawn
npm ERR! file sh
npm ERR! errno ENOENT
npm ERR! app@0.0.0 build: `ng build --prod "--prod"`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the app@0.0.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/xx/.npm/_logs/2021-08-01T21_01_45_518Z-debug.log
我也偶然发现了这个。如果你纯粹是Angular,那么
ng build --configuration production
如果您的项目有 ng + API 节点后端,例如 Azure 静态 Web 应用程序,那么
npm run build --configuration
注意:不要这样做 npm run build --configuration production
,它会产生
ng build --prod "production" An unhandled exception occurred: Project 'production' does not exist.