This commit is contained in:
Felix Roos 2022-12-20 19:50:32 +01:00
parent 7efaff4f6f
commit d0013f55a2
13 changed files with 338 additions and 356 deletions

View file

@ -8,14 +8,17 @@ import mdx from '@astrojs/mdx';
// https://astro.build/config
// https://astro.build/config
import tailwind from "@astrojs/tailwind";
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
integrations: [
// Enable Preact to support Preact JSX components.
preact(),
// Enable React for the Algolia search component.
react(), mdx(), tailwind()],
site: `https://strudel.tidalcycles.org`
});
// Enable Preact to support Preact JSX components.
preact(),
// Enable React for the Algolia search component.
react(),
mdx(),
tailwind(),
],
site: `https://strudel.tidalcycles.org`,
});