[Error Note] Error: Cannot find module 'vue-loader/lib/plugin' 해결방법
·
◈ Study/에러노트(Error Note)🧱
- Error: Cannot find module 'vue-loader/lib/plugin' npm으로 vue-loader를 설치하고 빌드하는 중 에러가 발생하였다. - Error: Cannot find module 'vue-loader/lib/plugin' 해결방법 VueLoaderPlugin을 import 하는 방식이 바뀌었기 때문이였다. 구버전 코드가 아닌 신버전 코드로 바꿔주면 된다. // 구버전 Cannot find module 'vue-loader/lib/plugin' // 신버전 const { VueLoaderPlugin } = require('vue-loader') - 참고자료 Webpack : Cannot find module 'vue-loader/lib/plugin' 문제 : Canno..
[Error Note] Failed to mount component: template or render function not defined
·
◈ Study/에러노트(Error Note)🧱
- Failed to mount component: template or render function not defined Vue 컴포넌트 생성 중, 에러가 발생하였다. 무엇이 문제인지 보니, 한 글자의 오타로 인해 발생한 문제였다. 'template'인데 'templete'라고 썼었다. Failed to mount component는 주로 오타로 인해 발생한다.