mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
df37366556
* rearrange plugins and add props to Image component * add tests and update lockfile * add changeset * re-rearrange plugin order, gfm/smartypants then user defined then image related then shiki/prism * make more generic * add more/better tests * remove unused logger --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import mdx from '@astrojs/mdx';
|
|
import plugin from "./remarkPlugin"
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [mdx({remarkPlugins:[plugin]})],
|
|
});
|