From a98100d3005a65d12931c285e3184c7783305f71 Mon Sep 17 00:00:00 2001 From: lmx-Hexagram <52130356+lmx-Hexagram@users.noreply.github.com> Date: Mon, 16 Mar 2020 20:08:10 +0800 Subject: [PATCH] docs: update theme.en-US.md (#5833) --- docs/markdown/theme.en-US.md | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/docs/markdown/theme.en-US.md b/docs/markdown/theme.en-US.md index d1e7e72e0..5639bdc0a 100644 --- a/docs/markdown/theme.en-US.md +++ b/docs/markdown/theme.en-US.md @@ -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";`, + }, + }, + }, + }, +}; +``` +