Skip to content

Commit 9800a1c

Browse files
authored
Following the tutorial (#11)
Signed-off-by: GitHub <[email protected]>
1 parent d56a31d commit 9800a1c

28 files changed

+890
-27
lines changed

astro.config.mjs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
import { defineConfig } from 'astro/config';
2-
32
import sentry from "@sentry/astro";
43
import spotlightjs from "@spotlightjs/astro";
5-
64
import vercel from "@astrojs/vercel/serverless";
75

6+
import preact from "@astrojs/preact";
7+
88
// https://astro.build/config
99
export default defineConfig({
10-
integrations: [sentry(), spotlightjs()],
10+
site: "https://bradley.dog",
11+
integrations: [sentry(), spotlightjs(), preact()],
1112
output: "server",
1213
adapter: vercel({
1314
webAnalytics: {
14-
enabled: true,
15+
enabled: true
1516
},
1617
speedInsights: {
17-
enabled: true,
18-
},
19-
}),
20-
});
18+
enabled: true
19+
}
20+
})
21+
});

0 commit comments

Comments
 (0)