Angular 14 버전을 사용하면서 ERROR ReferenceError: process is not defined 오류가 발생할 경우 해결 방법입니다. 설치 $ npm install --save-dev process 내용 추가 src/polyfill.ts 파일에 다음 내용을 추가합니다.
(window as any).global = window; global.Buffer = global.Buffer || require('buffer').Buffer; global.process = require('process');...
[Angular] process is not defined 해결 방법에 대한 요약내용입니다.
자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.