webpack的path.resolve和path.join的区别

首先声明:记录学习过程中遇到的问题

小tips:path的join和resolve的使用区别

path.join最近在项目中的应用

// vue.config.js
function resolve(dir) {
     
  return path.join(__dirname, dir)
}
-------module.exports-----------
 chainWebpack(config){
     
    config.resolve.alias
    .set('components',resolve('src/components'))
  }

你可能感兴趣的:(webpack)