From 87c06d42c039be1e2ae05e4aac6ee41bfb5091fb Mon Sep 17 00:00:00 2001 From: hippotastic <6137925+hippotastic@users.noreply.github.com> Date: Thu, 30 Jun 2022 19:39:23 +0200 Subject: [PATCH] Fix integration name (`prefetch` instead of `lit`) --- .changeset/light-moons-protect.md | 5 +++++ packages/integrations/prefetch/src/index.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/light-moons-protect.md diff --git a/.changeset/light-moons-protect.md b/.changeset/light-moons-protect.md new file mode 100644 index 000000000000..9b9bd38eff51 --- /dev/null +++ b/.changeset/light-moons-protect.md @@ -0,0 +1,5 @@ +--- +'@astrojs/prefetch': patch +--- + +Fix integration name (`prefetch` instead of `lit`) diff --git a/packages/integrations/prefetch/src/index.ts b/packages/integrations/prefetch/src/index.ts index a15f887476b4..cb1c73a0bac0 100644 --- a/packages/integrations/prefetch/src/index.ts +++ b/packages/integrations/prefetch/src/index.ts @@ -3,7 +3,7 @@ import type { PrefetchOptions } from './client.js'; export default function (options: PrefetchOptions = {}): AstroIntegration { return { - name: '@astrojs/lit', + name: '@astrojs/prefetch', hooks: { 'astro:config:setup': ({ updateConfig, addRenderer, injectScript }) => { // Inject the necessary polyfills on every page (inlined for speed).