```astro --- import 'astro-dev-only'; --- <Layout> <h1>This page won't show up in prod</h1> </Layout> ``` It might make sense to make it a virtual module, so maybe something more like this? ```astro --- import 'dev:only'; --- ```