mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
19 lines
377 B
JavaScript
19 lines
377 B
JavaScript
import image from '@astrojs/image';
|
|
import mdx from '@astrojs/mdx';
|
|
import preact from '@astrojs/preact';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
mdx(),
|
|
tailwind(),
|
|
preact(),
|
|
image({
|
|
serviceEntryPoint: '@astrojs/image/sharp',
|
|
}),
|
|
],
|
|
});
|