I'm trying to use axios CDN with dynamic import ES6 ,
My code
(async ()=>{ await import('https://unpkg.com/axios/dist/axios.min.js') })()
Error

It works fine with System.import , but not with native import,
Context
- axios version: v0.18.0
- Environment: chrome 70, windows 10
I'm trying to use axios CDN with dynamic import ES6 ,
My code
(async ()=>{ await import('https://unpkg.com/axios/dist/axios.min.js') })()Error
It works fine with System.import , but not with native import,
Context