๐Ÿ“ฆ YMFE / yapi

๐Ÿ“„ webpack.alias.js ยท 10 lines
1
2
3
4
5
6
7
8
9
10const path = require('path')

module.exports = {
  resolve: {
    alias: {
      'common': path.resolve(__dirname, 'common'),
      'client': path.resolve(__dirname, 'client')
    }
  }
}