pengzhanbo 4d2361a704
feat(theme)!: add collections support (#704)
* feat(theme)!: add collection support
2025-10-07 23:13:09 +08:00

9 lines
456 B
TypeScript

/**
* 每次修改 主题配置 都会导致 vuepress 服务重启,成本太高了,严重影响了用户体验。
* 实际上 主题配置 中的大部分 选项 跟 node 的构建过程是无关的,根本无需重启服务。
* 因此,将 主题配置 抽离到独立的文件中进行配置,避免服务重启,是非常有必要的。
*/
export * from './compiler.js'
export * from './ConfigLoader.js'
export * from './findConfigPath.js'