mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
16 lines
294 B
JavaScript
16 lines
294 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 empty from './empty'
|
|
export {
|
|
next,
|
|
fukasawa,
|
|
hexo,
|
|
medium,
|
|
empty
|
|
}
|