docs: update theme.zh-CN.md (#5829)

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

View File

@ -78,14 +78,35 @@ module.exports = {
modifyVars: {
// 直接覆盖变量
'text-color': '#111',
'border-color': '#eee'
'border-color': '#eee',
// 或者可以通过 less 文件覆盖(文件路径为绝对路径)
'hack': `true; @import "your-less-file-path.less";`
}
}
}
]
}
]
hack: `true; @import "your-less-file-path.less";`,
},
},
},
],
},
],
};
```
如果 vue-cli 搭建的项目,可以在 `vue.config.js` 中进行配置。
```js
// vue.config.js
module.exports = {
css: {
loaderOptions: {
less: {
modifyVars: {
// 直接覆盖变量
'text-color': '#111',
'border-color': '#eee',
// 或者可以通过 less 文件覆盖(文件路径为绝对路径)
hack: `true; @import "your-less-file-path.less";`,
},
},
},
},
};
```