diff options
author | 2022-06-30 19:53:01 +0200 | |
---|---|---|
committer | 2022-06-30 12:53:01 -0500 | |
commit | 91635f05df207d33ee8b50a2afe970b94b24ba7b (patch) | |
tree | 7273245ca96793ba6d7790e3c04a82d5c47360a2 | |
parent | d137169b7ba6a7965cb2b851774b241684791682 (diff) | |
download | astro-91635f05df207d33ee8b50a2afe970b94b24ba7b.tar.gz astro-91635f05df207d33ee8b50a2afe970b94b24ba7b.tar.zst astro-91635f05df207d33ee8b50a2afe970b94b24ba7b.zip |
Fix integration name (`prefetch` instead of `lit`) (#3778)
-rw-r--r-- | .changeset/light-moons-protect.md | 5 | ||||
-rw-r--r-- | packages/integrations/prefetch/src/index.ts | 2 |
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). |