@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 },
};
@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 },
};