You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have had the same problem with angular (7/8).
We ended up with a fork where we added the same core-js polyfills that angular does to avoid the zone.js conflict.
We have had the same problem with angular (7/8).
We ended up with a fork where we added the same core-js polyfills that angular does to avoid the zone.js conflict.
FreeDraw.js:
delete:
import 'core-js';
add:
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
Originally posted by @AndreasOlausson in #141 (comment)
The text was updated successfully, but these errors were encountered: