ice/packages/plugin-antd
ClarkXia fbeaf932cb
chore: update versions (#6509)
2023-09-14 10:58:37 +08:00
..
src
CHANGELOG.md
README.md
package.json
tsconfig.json

README.md

@ice/plugin-antd

An ice.js plugin to use antd components.

Usage

import { defineConfig } from '@ice/app';
import antd from '@ice/plugin-antd';

export default defineConfig(() => ({
  plugins: [antd({
    dark: true,
    compact: true,
    theme: {
      'primary-color': '#fd8',
    },
  })],
}));