summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/light-moons-protect.md5
-rw-r--r--packages/integrations/prefetch/src/index.ts2
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/light-moons-protect.md b/.changeset/light-moons-protect.md
new file mode 100644
index 000000000..9b9bd38ef
--- /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 a15f88747..cb1c73a0b 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).