const path = require('path') module.exports = { css:{ loaderOptions:{ less:{ modifyVars:{ //通过本地less文件覆盖变量 // true; @import "your-less-file-path.less"; modifyVars: { hack: `true; @import "${path.resolve(__dirname, './src/assets/css/resetVantUi.less')}";` } } } } } } }