old2-ieeeucsd-org/astro.config.mjs
2024-03-17 22:08:07 -07:00

19 lines
452 B
JavaScript

import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import preact from "@astrojs/preact";
import mdx from "@astrojs/mdx";
import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
integrations: [
mdx(),
tailwind(),
preact({
include: ["**/preact/*"],
}),
react({
include: ["**/react/*"],
}),
],
});