1. Refer to the short path in the less file like the js file.
2, webpack.config.js are as follows
resolve: {
extensions: [".js",".json"],
alias:{
src:path.resolve(__dirname,"src"),
components:"src/components",
routes:"src/routes",
common:"src/common"
}
},
3. Import "components/Header.js" references can be used directly in js files, but @ import" common/consts.less"
cannot be used in less.