mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-23 15:09:46 +00:00
33 lines
628 B
JavaScript
33 lines
628 B
JavaScript
/**
|
|
* 切换主题请修改 blog.config.js 中的 THEME 字段
|
|
*/
|
|
import * as hexo from './hexo'
|
|
// import * as next from './next'
|
|
// import * as fukasawa from './fukasawa'
|
|
// import * as medium from './medium'
|
|
// import * as nobelium from './nobelium'
|
|
// import * as matery from './matery'
|
|
// import * as example from './example'
|
|
// import * as simple from './simple'
|
|
|
|
export const ALL_THEME = [
|
|
'hexo'
|
|
// 'matery',
|
|
// 'next',
|
|
// 'medium',
|
|
// 'fukasawa',
|
|
// 'nobelium',
|
|
// 'example',
|
|
// 'simple'
|
|
]
|
|
export {
|
|
hexo
|
|
// next,
|
|
// medium,
|
|
// fukasawa,
|
|
// nobelium,
|
|
// matery,
|
|
// example,
|
|
// simple
|
|
}
|