Skip to content

Latest commit

 

History

History
 
 

plugin-antd

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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