mirror of
https://github.com/zhigang1992/docz.git
synced 2026-03-29 00:18:31 +08:00
* fix(docz-core): reduce from plugins arguments * feat(docz-plugin-css): add initial version of plugin * chore(docz-plugin-css): add some examples
11 lines
148 B
JavaScript
11 lines
148 B
JavaScript
import { css } from 'docz-plugin-css'
|
|
|
|
export default {
|
|
plugins: [
|
|
css({
|
|
preprocessor: 'stylus',
|
|
cssmodules: true,
|
|
}),
|
|
],
|
|
}
|