aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/web-vitals/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/web-vitals/src/index.ts')
-rw-r--r--packages/integrations/web-vitals/src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/web-vitals/src/index.ts b/packages/integrations/web-vitals/src/index.ts
index f5c1c72a2..02293ac6f 100644
--- a/packages/integrations/web-vitals/src/index.ts
+++ b/packages/integrations/web-vitals/src/index.ts
@@ -15,7 +15,7 @@ export default function webVitals({ deprecated }: { deprecated?: boolean } = {})
if (!config.integrations.find(({ name }) => name === 'astro:db')) {
throw new AstroError(
'Astro DB integration not found.',
- 'Run `npx astro add db` to install `@astrojs/db` and add it to your Astro config.'
+ 'Run `npx astro add db` to install `@astrojs/db` and add it to your Astro config.',
);
}
@@ -23,7 +23,7 @@ export default function webVitals({ deprecated }: { deprecated?: boolean } = {})
throw new AstroError(
'No SSR adapter found.',
'`@astrojs/web-vitals` requires your site to be built with `hybrid` or `server` output.\n' +
- 'Please add an SSR adapter: https://docs.astro.build/en/guides/server-side-rendering/'
+ 'Please add an SSR adapter: https://docs.astro.build/en/guides/server-side-rendering/',
);
}