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