PESDK/Web
Angular - process is not defined
If you encounter the process is not defined
error message you will need to add the following snippet to the polyfills.ts
.
polyfills.ts
(window as any).process = {env: { DEBUG: undefined },};
If you encounter the process is not defined
error message you will need to add the following snippet to the polyfills.ts
.
(window as any).process = {env: { DEBUG: undefined },};