美文网首页
taro添加别名

taro添加别名

作者: ONE2 | 来源:发表于2019-12-18 18:57 被阅读0次

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: './'
}

相关文章

网友评论

      本文标题:taro添加别名

      本文链接:https://www.haomeiwen.com/subject/qonunctx.html