-
admin
9 小时以前 41afb20b6b3776f1242ce2aba29d8e51fa8110d6
1
2
3
4
5
6
7
8
9
10
11
const path = require('path')
 
module.exports = {
  configureWebpack: {
    resolve: {
      alias: {
        '@': path.resolve(__dirname, 'src')
      }
    }
  }
}