--- title: '' description: Render components only during development with the component. links: - label: Source icon: i-simple-icons-github to: https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/app/components/dev-only.ts size: xs --- Nuxt provides the `` component to render a component only during development. The content will not be included in production builds. ```vue [pages/example.vue] ``` ## Slots - `#fallback`: if you ever require to have a replacement during production. ```vue ```