I have problem with Safari version <= 9. Babel doesn\'t seem to replace const with var.
I get this error in console:
Unexpected keyword \'const\'. C
did you try to configure preset-env ? you can find the browsers list here: https://github.com/browserslist/browserslist
preset-env
probably need to add Safari 8 in your list...
Safari 8
["@babel/preset-env", { "targets": { "browsers": ["last 2 versions"], } }]