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.
20 lines
407 B
20 lines
407 B
3 years ago
|
/**
|
||
|
* 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;
|