Ben Schlegel
2023-09-17 4afb099bf3ec96e5d795e871ecb19575271c0714
quartz/plugins/index.ts
@@ -1,6 +1,6 @@
import { StaticResources } from "../resources"
import { FilePath, ServerSlug } from "../path"
import { BuildCtx } from "../ctx"
import { StaticResources } from "../util/resources"
import { FilePath, FullSlug } from "../util/path"
import { BuildCtx } from "../util/ctx"
export function getStaticResourcesFromPlugins(ctx: BuildCtx) {
  const staticResources: StaticResources = {
@@ -28,7 +28,7 @@
declare module "vfile" {
  // inserted in processors.ts
  interface DataMap {
    slug: ServerSlug
    slug: FullSlug
    filePath: FilePath
  }
}