antd-pro-merge-less

A webpack plugin for ant design pro less


Keywords
merge, less
License
MIT
Install
npm install antd-pro-merge-less@3.0.11

Documentation

antd-pro-merge-less

使用方式:

const genCss = require('antd-pro-merge-less');

genCss(
  'C:/GitHub/ant-design',
  [
    {
      theme: 'dark',
      fileName: './.temp/dark.css',
    },
    {
      fileName: './.temp/mingQing.css',
      modifyVars: {
        '@primary-color': '#13C2C2',
      },
    },
  ],
  {
    // 是否压缩css
    min: false,
    // css module
    isModule: false,
    // 忽略 antd 的依赖
    ignoreAntd: true,
    // 忽略 pro-layout
    ignoreProLayout: true,
    // 不使用缓存
    cache: false,
  },
);