plugin.config.js 884 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1 2 3
// Change theme plugin

const MergeLessPlugin = require('antd-pro-merge-less');
陈帅's avatar
陈帅 committed
4
const AntDesignThemePlugin = require('antd-pro-theme-webpack-plugin');
陈帅's avatar
陈帅 committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
const path = require('path');

const plugin = config => {
  // 将所有 less 合并为一个供 themePlugin使用
  const outFile = path.join(__dirname, '../.temp/ant-design-pro.less');
  const stylesDir = path.join(__dirname, '../src/');

  config.plugin('merge-less').use(MergeLessPlugin, [
    {
      stylesDir,
      outFile,
    },
  ]);

  config.plugin('ant-design-theme').use(AntDesignThemePlugin, [
    {
      antDir: path.join(__dirname, '../node_modules/antd'),
      stylesDir,
      varFile: path.join(__dirname, '../node_modules/antd/lib/style/themes/default.less'),
陈帅's avatar
陈帅 committed
24
      mainLessFile: outFile, //     themeVariables: ['@primary-color'],
陈帅's avatar
陈帅 committed
25 26 27 28 29 30
      indexFileName: 'index.html',
    },
  ]);
};

module.exports = plugin;