23 lines
477 B
JavaScript
23 lines
477 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
import expressiveCode from "astro-expressive-code";
|
|
|
|
import node from "@astrojs/node";
|
|
|
|
import icon from "astro-icon";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), expressiveCode(), react(), icon(), mdx()],
|
|
|
|
adapter: node({
|
|
mode: "standalone",
|
|
}),
|
|
});
|