March 18th, 2025
Patch Changes
🐞🩹 MDX content now accepts a prop of type
components
that lets you use your own custom components (by @double-thinker in #7277)To add custom components to your MDX content, you can now do this:
// routes/example/index.tsx import Content from './markdown.mdx'; import MyComponent from '../../components/my-component/my-component'; import { component$ } from '@builder.io/qwik'; export default component$(() => <Content components={{ MyComponent }} />);
You can also use props in JS expressions. See https://mdxjs.com/docs/using-mdx/#props
📃 added a "Qwik for Mobile" guide to build iOS and Android Qwik apps (by @srapport in #7205)
🐞🩹 some qrls weren't fetched correctly on page load (by @shairez in #7286)