From 038a617b30cf86315e0a8aa4b0332faa875a56a7 Mon Sep 17 00:00:00 2001 From: Jerko Steiner Date: Mon, 18 Nov 2019 00:53:30 -0300 Subject: [PATCH] Do not use core-js because it breaks minification We get an error can't convert n to string: its [Symbol.toPrimitive] method returned an object --- src/client/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/index.tsx b/src/client/index.tsx index 7539e29..2915ba4 100644 --- a/src/client/index.tsx +++ b/src/client/index.tsx @@ -1,5 +1,4 @@ import '@babel/polyfill' -import 'core-js' import App from './containers/App' import React from 'react' import ReactDOM from 'react-dom'