You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
440 B

#!/usr/bin/env node
const path = require('path');
5 years ago
const genCss = require('antd-pro-merge-less');
const dark = require('./dart');
5 years ago
genCss(
path.join(__dirname, '..'),
[
{
theme: 'dark',
fileName: './_site/dark.css',
modifyVars: {
...dark,
'@site-markdown-code-bg': '@input-bg',
},
},
],
{
ignoreAntd: true,
isModule: false,
cache: false,
ignoreProLayout: true,
},
);