taro创建项目安装taro-ui之后启H5端会报错解决方案

一、安装taro

参考官方文档:https://nervjs.github.io/taro/docs/GETTING-STARTED.html

注意坑一:

安装依赖的时候总是出错,记得安装依赖顺序:yarn  >  cnpm   >  npm ,基本上可以完成安装依赖。

二、安装taro-ui

参考官方文档:https://taro-ui.aotu.io/#/docs/quickstart

注意坑二:

安装好后 npm run dev:h5 启动项目后,项目报错:You may need an appropriate loader to handle this file type,

记得在config/index.js 文件中添加如下配置项:

h5: {

esnextModules: ['taro-ui']

}

你可能感兴趣的:(taro创建项目安装taro-ui之后启H5端会报错解决方案)