Lightning Bundle Configurations Available in the Developer Console

Configurations make it easier to create a component or application for a specific purpose, like a Lightning page or Experience Builder site page, or a quick action or navigation item in Lightning Experience or Salesforce mobile app. The New Lightning Bundle panel in the Developer Console offers a choice of component configurations when you create an Aura component or application bundle.

Configurations add the interfaces required to support using the component in the desired context. For example, when you choose the Lightning Tab configuration, your new component includes implements="force:appHostable" in the <aura:component> tag.

Using configurations is optional. You can use them in any combination, including all or none.

These Aura component bundle configurations and Lightning application bundle configurations are available in the New Lightning Bundle panel.

For details of the markup added by each configuration, see the respective documentation for those features.

Note

Aura Component Bundle: Lightning Tab Configuration 

Creates a component for use as a navigation element in Lightning Experience or Salesforce mobile apps.

Markup: implements="force:appHostable"

Aura Component Bundle: Lightning Page Configuration 

Creates a component for use in Lightning pages or the Lightning App Builder.

Markup: implements="flexipage:availableForAllPageTypes" and access="global"

Aura Component Bundle: Lightning Record Page Configuration 

Creates a component for use on a record home page in Lightning Experience.

Markup: implements="flexipage:availableForRecordHome, force:hasRecordId" and access="global"

Aura Component Bundle: Experience Builder Site Page Configuration 

Creates a component that’s available for drag and drop in the Experience Builder.

Markup: implements="forceCommunity:availableForAllPageTypes" and access="global"

The Experience Builder Site Page configuration was previously named the Lightning Communities Page configuration.

Note

Aura Component Bundle: Lightning Quick Action Configuration 

Creates a component that can be used with a Lightning quick action.

Markup: implements="force:lightningQuickAction"

Lightning Application Bundle: Lightning Out Dependency App Configuration 

Creates an empty Lightning Out dependency app.

Markup: extends="ltng:outApp"

See Also