astro.config.mjs 133 B

123456789
  1. import mdx from '@astrojs/mdx';
  2. export default {
  3. integrations: [mdx({
  4. optimize: {
  5. customComponentNames: ['strong']
  6. }
  7. })]
  8. }