반응형
babel plugin 중 하나인 babel-plugin-transform-remove-console
를 사용하여 한 번에 지울 수 있다.
1. babel-plugin-transform-remove-console 설치
babel-plugin-transform-remove-console
$ npm install --save-dev babel-plugin-transform-remove-console
2. nuxt.config.js에 설정
export default {
build: {
babel: {
// 옵션 있는 경우
plugins: [['transform-remove-console', { "exclude": [ "warn" ] }]],
// 옵션 없는 경우
plugins: [['transform-remove-console']],
},
},
};
반응형
'WEB > Vue.js' 카테고리의 다른 글
[Vue.js] Custom Directive : Outside Click Event (0) | 2021.01.13 |
---|---|
[Vue.js] Custom Directive (0) | 2021.01.13 |
[Vuejs][VScode] 'v-slot' directive doesn't support any modifier. (0) | 2020.12.10 |
[Vuejs] v-html (0) | 2020.12.04 |
[Vuejs] Mdi(Material Design Icons) offline (0) | 2020.08.18 |