Uncaught ReferenceError: process is not defined in React UIKit v3

@shelflife_john I ended up adding a polyfill to just get passed this issue, since I am not using node/ssr so process will not exist unless you install a seperate package:

(window as any).process = {
    env: { NODE_DEBUG: undefined },
};
1 Like