diff options
Diffstat (limited to 'packages/integrations/prefetch/src/index.ts')
-rw-r--r-- | packages/integrations/prefetch/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/prefetch/src/index.ts b/packages/integrations/prefetch/src/index.ts index cb1c73a0b..74ec5186e 100644 --- a/packages/integrations/prefetch/src/index.ts +++ b/packages/integrations/prefetch/src/index.ts @@ -5,7 +5,7 @@ export default function (options: PrefetchOptions = {}): AstroIntegration { return { name: '@astrojs/prefetch', hooks: { - 'astro:config:setup': ({ updateConfig, addRenderer, injectScript }) => { + 'astro:config:setup': ({ injectScript }) => { // Inject the necessary polyfills on every page (inlined for speed). injectScript( 'page', |