ice/packages/plugin-antd
ClarkXia fbeaf932cb
chore: update versions (#6509)
2023-09-14 10:58:37 +08:00
..
src fix: import path of types and runtime (#5981) 2023-02-28 15:08:10 +08:00
CHANGELOG.md chore: update versions (#6509) 2023-09-14 10:58:37 +08:00
README.md chore: optimize (#676) 2022-11-15 10:33:11 +08:00
package.json chore: update versions (#6509) 2023-09-14 10:58:37 +08:00
tsconfig.json feat: plugin antd (#421) 2022-11-15 10:19:56 +08:00

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',
    },
  })],
}));