import { defineConfig } from "astro/config"; import mdx from "@astrojs/mdx"; import a11yEmoji from "@fec/remark-a11y-emoji"; import wasmPack from 'vite-plugin-wasm-pack'; // https://astro.build/config export default defineConfig({ integrations: [mdx()], markdown: { remarkPlugins: [ a11yEmoji ], shikiConfig: { theme: "one-dark-pro" } }, // Copy wasm-terminal to the build directory vite: { plugins: [ wasmPack([],['@c0ntroller/wasm-terminal']) ] } });