docs: update theme.en-US.md (#5833)

This commit is contained in:
lmx-Hexagram 2020-03-16 20:08:10 +08:00 committed by GitHub
parent 477e29e341
commit a98100d300
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,11 +78,33 @@ module.exports = {
'border-color': '#eee'
// or override with less file
'hack': `true; @import "your-less-file-path.less";`
}
}
}
]
}
]
},
},
},
],
},
],
};
```
If you build a project by vue-cli,it can be configured in `vue.config.js`:
```js
// vue.config.js
module.exports = {
css: {
loaderOptions: {
less: {
modifyVars: {
// overide with less vars
'text-color': '#111',
'border-color': '#eee',
// or override with less file
hack: `true; @import "your-less-file-path.less";`,
},
},
},
},
};
```