美文网首页
taro alias

taro alias

作者: xcyzjs | 来源:发表于2020-07-09 09:27 被阅读0次

官方文档: https://taro-docs.jd.com/taro/docs/config-detail
还要引入 path

const path = require('path') // 此步骤不能少
const config = {
    .  
    .
    .
    alias: {
        '@/components': path.resolve(__dirname, '..', 'src/components'),
        '@/utils': path.resolve(__dirname, '..', 'src/utils'),
        '@/assets': path.resolve(__dirname, '..', 'src/assets'),
        '@/static': path.resolve(__dirname, '..', 'src/static')
    },
    .
    .
    .
}

相关文章

网友评论

      本文标题:taro alias

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