astro/packages/integrations/mdx/test/fixtures/mdx-infinite-loop/astro.config.ts
Nate Moore cf2bba1e4a
P5: fix MDX memory leak (#4939)
* fix(astro): tag jsx vnodes with renderer so errors are properly handled

* chore: fix missing package in test

Co-authored-by: Nate Moore <nate@astro.build>
2022-09-30 17:13:44 -05:00

6 lines
123 B
TypeScript

import mdx from '@astrojs/mdx';
import preact from '@astrojs/preact';
export default {
integrations: [mdx(), preact()]
}