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') } } }
1 2 3 4 5 6 7 8 9 10
const path = require('path') module.exports = { resolve: { alias: { 'common': path.resolve(__dirname, 'common'), 'client': path.resolve(__dirname, 'client') } } }