https://segmentfault.com/a/1190000019132845?utm_source=tag-newest
在config 文件夹里面的index.js 文件增加 以下内容
const path = require('path') // 加在最上面
alias:{
'@/utils':path.resolve(__dirname,'..','src/utils'),
'@/actions':path.resolve(__dirname,'..','src/actions'),
},
截屏2019-12-18下午6.56.28.png
taro build h5 app.js无法加载解决:
[https://www.cnblogs.com/popodashijian/p/10868368.html]
在config->prod.js添加
h5: {
publicPath: './'
}









网友评论