mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import react from '@astrojs/react';
|
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
import remarkToc from 'remark-toc';
|
|
import rehypeSlug from 'rehype-slug';
|
|
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
|
|
|
|
import tailwind from '@astrojs/tailwind';
|
|
// import { visualizer } from 'rollup-plugin-visualizer';
|
|
|
|
const options = {
|
|
// See https://mdxjs.com/advanced/plugins
|
|
remarkPlugins: [
|
|
remarkToc,
|
|
// E.g. `remark-frontmatter`
|
|
],
|
|
rehypePlugins: [rehypeSlug, rehypeAutolinkHeadings],
|
|
};
|
|
|
|
// 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(options),
|
|
tailwind(),
|
|
],
|
|
site: `https://strudel.tidalcycles.org`,
|
|
});
|
|
|
|
/*
|
|
build: {
|
|
outDir: '../out',
|
|
sourcemap: true,
|
|
rollupOptions: {
|
|
plugins: [visualizer({ template: 'treemap' })],
|
|
},
|
|
},
|
|
*/
|