Fixes
-
6cc4dfb Export
metadata
from SvelTeX pages even if no frontmatter was found on the page in question. In those cases, we'll just have<script context="module"> export const metadata = undefined; </script>
which is better than the alternative
<script context="module"> </script>
because it won't cause
import.meta.glob('...', { import: 'metadata', eager: true })
to throw an error if it reaches a SvelTeX page that doesn't have any frontmatter.
Full Changelog: v0.4.0...v0.4.1