2019-04-02 Introduction to Modern Web Development 7 - Production Resources polyfill.io Vue CLI Deployment Squoosh.app polyfill1234567// polyfill if necessary for IE11if (!(window.fetch && window.Promise)) { var js = document.createElement('script') js.src = 'https://polyfill.io/v3/polyfill.min.js?features=fetch%2CPromise' js.crossorigin = 'anonymous' document.head.appendChild(js)}