报错信息
app.js错误:
Error: module 'vendors-node_modules_taro_weapp_prebundle_chunk-JKKUMPG4_js.js' is not defined, require args is './vendors-node_modules_taro_weapp_prebundle_chunk-JKKUMPG4_js.js'
复现方式
taro init创建项目,选用默认模板或者cli内置默认模板,不做任何改动,运行项目到微信小程序
解决方式
更改config/index.js
中的compiler
,如下
compiler: {
type: 'webpack5',
prebundle: {enable: false}
},
参数文档说明:https://docs.taro.zone/docs/config-detail/#compilerprebundle
重新编译运行项目解决问题。