chore: remove @astrojs/image

This commit is contained in:
Stefan Imhoff
2023-05-18 16:57:08 +02:00
parent e11fd13e0e
commit a2cbec1d2e
4 changed files with 2 additions and 56 deletions

View File

@@ -1,4 +1,3 @@
import image from '@astrojs/image';
import mdx from '@astrojs/mdx';
import preact from '@astrojs/preact';
import tailwind from '@astrojs/tailwind';
@@ -8,13 +7,5 @@ import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [
mdx(),
tailwind(),
preact(),
astroImageTools,
image({
serviceEntryPoint: '@astrojs/image/sharp',
}),
],
integrations: [mdx(), tailwind(), preact(), astroImageTools],
});