vue项目npm run dev 报错error in ./src/main.js Module build failed: Error: Cannot find module 'babel-plugin-syntax-jsx'

problem:

vue project npm run dev runtime error, as shown below:

 

 the reason:

Lack of appropriate components

Solution:

Installation corresponding components: npm install babel-plugin-syntax-jsx --save-dev

The installation is complete perform npm run dev again 

Guess you like

Origin www.cnblogs.com/zhoushuang0426/p/12217901.html