--- title: Build App Home as a UI extension - Shopify developer changelog description: >- Shopify’s developer changelog documents all changes to Shopify’s platform. Find the latest news and learn about new platform opportunities. source_url: html: 'https://shopify.dev/changelog/build-app-home-as-a-ui-extension' md: 'https://shopify.dev/changelog/build-app-home-as-a-ui-extension.md' metadata: effectiveApiVersion: 2026-07 affectedApi: - displayName: Admin Extensions handle: admin-extensions primaryTag: displayName: API handle: api secondaryTag: displayName: New handle: new indicatesActionRequired: false createdAt: '2026-05-18T12:21:32-04:00' postedAt: '2026-05-27T13:30:00-04:00' updatedAt: '2026-05-27T13:21:32-04:00' effectiveAt: '2026-05-21T12:00:00-04:00' --- May 27, 2026 Tags: * Admin Extensions * 2026-07 # Build App Home as a UI extension You can now create your app's landing page in App Home as a Preact-based admin UI extension using the new [`admin.app.home.render`](https://shopify.dev/docs/api/app-home-ui-extension/latest/targets) target. This means your App Home UI extensions are bundled with your other admin UI extensions, eliminating the need for a separate web server to render your app's primary workspace. Use this extension type when you want: * A persistent, full-page app workspace that's integrated into your extension bundle, rather than a separate iframe-hosted web app. * A unified source of truth for your app's primary UI, alongside your other admin UI extensions. * The performance and design-system advantages of [Polaris web components](https://shopify.dev/docs/api/app-home-ui-extension/latest/web-components) without the need for hosting a web server for the App Home experience. ### Availability App Home UI extensions are available starting from API version `2026-07` and are intended for **custom-distribution apps**. If you're developing a public app for the Shopify App Store, you should continue using the [iframe-based App Home](https://shopify.dev/docs/api/app-home) solution. ### Get started To begin, scaffold a new extension-only app by selecting **Build an extension-only app** when prompted: ``` shopify app init ``` Alternatively, add an App Home UI extension to an existing app by selecting **App home** when prompted: ``` shopify app generate extension ``` For a comprehensive list of target APIs, web components, and configuration options, refer to the [App Home UI extension reference](https://shopify.dev/docs/api/app-home-ui-extension/latest).