Normally, to use a layout in astro, I would first have to import my layout into my current .astro file frontmatter, then I would be able to use it.
For example:
---
import BaseLayout from '../layouts/BaseLayout.astro';
---
<BaseLayout>
</BaseLayout>
Is it possible to create a layout that is globally accessible in all my astro files so that I don't have to manually import it into my front matter every times ?