Taro 采坑记录(进行中)

什么是Taro?

由jd团队开发并维护的一套可转多端小程序的框架。采用类React框架,语法接近React。Taro框架的文档

坑点记录:

打包微信小程时,src/sitemap没有被打包
在config/index中配置copy选项


  copy: {
    patterns: [
      {
        from: 'src/sitemap.json', to: 'dist/sitemap.json'
      }, // 指定需要 copy 的目录
    ],
    options: {
    }
  }

第三方组件编译错误
Taro默认不编译node_modules内的文件,在config/index中配置 weapp.compile

    compile:{
      include: [
        "包名",
        "包名"
      ]
    }

第三方组件编译后引用路径不对
ui组件需要经过编译文档

你可能感兴趣的:(Taro 采坑记录(进行中))