mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
25 lines
580 B
JavaScript
25 lines
580 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import react from '@astrojs/react';
|
|
|
|
// https://astro.build/config
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
// https://astro.build/config
|
|
|
|
// https://astro.build/config
|
|
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`,
|
|
});
|