diff options
| author | seth <[email protected]> | 2023-05-24 06:17:46 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-24 06:17:46 -0400 |
| commit | e23620d10a5fb27f613e5b71cb0627fb1c4076b3 (patch) | |
| tree | 4b131eda41481bfc922fb86545c92f2c270496c2 /astro.config.ts | |
| parent | cb58a18f0f32cce04d13cf2d10b33d7721eebe1e (diff) | |
add 404/sitemap/robots.txt + improve random stuff
Diffstat (limited to 'astro.config.ts')
| -rw-r--r-- | astro.config.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/astro.config.ts b/astro.config.ts index edacb13..68b573b 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -1,7 +1,15 @@ import { defineConfig } from "astro/config"; +import image from "@astrojs/image"; +import sitemap from "@astrojs/sitemap"; import tailwind from "@astrojs/tailwind"; export default defineConfig({ site: "https://mydadleft.me", - integrations: [tailwind()], + integrations: [ + image({ + serviceEntryPoint: "@astrojs/image/sharp", + }), + sitemap(), + tailwind(), + ], }); |
