We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f2f761 commit b001a33Copy full SHA for b001a33
astro.config.mjs
@@ -1,13 +1,18 @@
1
import { defineConfig } from 'astro/config';
2
import tailwind from '@astrojs/tailwind';
3
import image from '@astrojs/image';
4
-import react from "@astrojs/react";
+import react from '@astrojs/react';
5
6
-import prefetch from "@astrojs/prefetch";
+import prefetch from '@astrojs/prefetch';
7
8
// https://astro.build/config
9
export default defineConfig({
10
- integrations: [tailwind(), image({
11
- serviceEntryPoint: '@astrojs/image/sharp'
12
- }), react(), prefetch()]
13
-});
+ integrations: [
+ tailwind(),
+ image({
+ serviceEntryPoint: '@astrojs/image/sharp',
14
+ }),
15
+ react(),
16
+ prefetch(),
17
+ ],
18
+});
0 commit comments