2023-05-31 21:01:23 +00:00
|
|
|
import { PluginTypes } from "./plugins/types"
|
2023-06-01 21:35:31 +00:00
|
|
|
import { Theme } from "./theme"
|
2023-05-30 15:02:20 +00:00
|
|
|
|
2023-06-01 21:35:31 +00:00
|
|
|
export interface GlobalConfiguration {
|
|
|
|
/** Whether to enable single-page-app style rendering. this prevents flashes of unstyled content and improves smoothness of Quartz */
|
|
|
|
enableSPA: boolean,
|
|
|
|
/** Glob patterns to not search */
|
|
|
|
ignorePatterns: string[],
|
|
|
|
theme: Theme
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface QuartzConfig {
|
2023-06-01 21:35:31 +00:00
|
|
|
configuration: GlobalConfiguration,
|
2023-05-30 15:02:20 +00:00
|
|
|
plugins: PluginTypes,
|
|
|
|
}
|