feat: add Toolbox component and Tool icons

This commit is contained in:
Stefan Imhoff
2023-04-30 18:21:23 +02:00
parent a9a28de5e2
commit 5bfe06dc4b
41 changed files with 867 additions and 67 deletions

View File

@@ -1,10 +1,20 @@
import { defineConfig } from 'astro/config';
import image from '@astrojs/image';
import mdx from '@astrojs/mdx';
import preact from '@astrojs/preact';
import svelte from '@astrojs/svelte';
import tailwind from '@astrojs/tailwind';
import preact from "@astrojs/preact";
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [mdx(), svelte(), tailwind(), preact()]
});
integrations: [
mdx(),
svelte(),
tailwind(),
preact(),
image({
serviceEntryPoint: '@astrojs/image/sharp',
}),
],
});