vue-cli (1) 썸네일형 리스트형 Vue Cli 3 IE polyfill 설정하기 1. babel 관련 npm을 install 한다. https://www.npmjs.com/package/@babel/polyfill @babel/polyfill Provides polyfills necessary for a full ES2015+ environment www.npmjs.com 2. main.js 에 import 한다. import '@babel/polyfill' 3. vue.config.js 에 관련하여 추가옵션을 더한다. const ansiRegex = require('ansi-regex') const path = require('path') module.exports = { ... transpileDependencies: [ansiRegex] // 추가 } ※ 참고사이트 https:.. 이전 1 다음