mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
b926c535ea
* chore: rm color-less * refactor: MV theme to variable * docs: fix header * chore: clean up * chore: enable esbuild
20 lines
407 B
JavaScript
20 lines
407 B
JavaScript
/**
|
|
* ZombieJ: This file is used for generate site theme css only. Which only provides dark.css and
|
|
* compact.css for theme switcher.
|
|
*/
|
|
const config = require('./index');
|
|
|
|
const homeTmpl = './template/Home/index';
|
|
|
|
const cloneConfig = {
|
|
...config,
|
|
};
|
|
|
|
cloneConfig.routes = {
|
|
path: '/',
|
|
component: './template/Layout/index',
|
|
indexRoute: { component: homeTmpl },
|
|
};
|
|
|
|
module.exports = cloneConfig;
|