1.0.0 • Published 6 years ago
@fishx/fishx-antd v1.0.0
@fishx/fishx-antd
Installation
yarn add @fishx/fishx-antd
Usage
import antd from '@fishx/fishx-antd'
export default {
plugins: [antd()],
}
Customize Ant Design Theme
to modify the default Ant Design theme:
import antd from '@fishx/fishx-antd'
import less from '@fishx/fishx-less'
export default {
plugins: [
less({
modifyVars: {
'primary-color': 'black',
'link-color': '#1DA57A',
'border-radius-base': '10px',
},
javascriptEnabled: true,
}),
antd({
style: true,
}),
],
}
1.0.0
6 years ago