diff --git a/package/src/core/create-resolver.ts b/package/src/core/create-resolver.ts index 2bd410e..556c87d 100644 --- a/package/src/core/create-resolver.ts +++ b/package/src/core/create-resolver.ts @@ -6,7 +6,7 @@ import { dirname, resolve } from "pathe"; * * @param {string} _base - The location you want to create relative references from. `import.meta.url` is usually what you'll want. * - * @see https://astro-integration-kit.netlify.app/utilities/create-resolver/ + * @see https://astro-integration-kit.netlify.app/core/create-resolver/ * * @example * ```ts diff --git a/package/src/core/define-all-hooks-plugin.ts b/package/src/core/define-all-hooks-plugin.ts index 523ed84..8ef439d 100644 --- a/package/src/core/define-all-hooks-plugin.ts +++ b/package/src/core/define-all-hooks-plugin.ts @@ -23,7 +23,7 @@ export type AllHooksPlugin>( plugin: AllHooksPluginDefinition diff --git a/package/src/core/define-integration.ts b/package/src/core/define-integration.ts index 7a74a64..8470865 100644 --- a/package/src/core/define-integration.ts +++ b/package/src/core/define-integration.ts @@ -21,7 +21,7 @@ type AstroIntegrationSetupFn = (params: { * @param {import("astro/zod").AnyZodObject} params.optionsSchema - An optional zod schema to handle your integration options * @param {function} params.setup - This will be called from your `astro:config:setup` call with the user options * - * @see https://astro-integration-kit.netlify.app/utilities/define-integration/ + * @see https://astro-integration-kit.netlify.app/core/define-integration/ * * @example * ```ts diff --git a/package/src/core/define-plugin.ts b/package/src/core/define-plugin.ts index 6f6a0e2..e01b46a 100644 --- a/package/src/core/define-plugin.ts +++ b/package/src/core/define-plugin.ts @@ -8,7 +8,7 @@ import type { Plugin, PluginHooksConstraint } from "./types.js"; * @param {string} plugin.hook - The name of the hook where this plugin should be available * @param {Function} plugin.implementation - The actual function definition. Refer to docs for usage * - * @see https://astro-integration-kit.netlify.app/utilities/define-plugin/ + * @see https://astro-integration-kit.netlify.app/core/define-plugin/ * * ```ts * import { definePlugin } from "../core/define-plugin.js"; diff --git a/package/src/core/define-utility.ts b/package/src/core/define-utility.ts index 4608a84..6dc4414 100644 --- a/package/src/core/define-utility.ts +++ b/package/src/core/define-utility.ts @@ -18,7 +18,7 @@ export type HookUtility< * * @param {string} _hook * - * @see https://astro-integration-kit.netlify.app/utilities/define-utility/ + * @see https://astro-integration-kit.netlify.app/core/define-utility/ * * @example * ```ts