To make an LWC available for use on a record page: * Target Configuration: * Add <target>lightning__RecordPage</target> in the component's .js-meta.xml file to specify where the component can be used. * Expose the Component: * Set isExposed to true in the .js-meta.xml file to make the component available for use. Example .js-meta.xml File:<?xml version="1.0" encoding="UTF-8"?> <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> <apiVersion>57.0</apiVersion> <isExposed>true</isExposed> <targets> <target>lightning__RecordPage</target> </targets> </LightningComponentBundle> * A: Incorrect placement. The <target> tag must be in the .js-meta.xml file, not the JavaScript file. * D: The <masterLabel> tag is used for metadata labeling, not for exposing or targeting a component. * LWC Metadata Configuration: https://developer.salesforce.com/docs/component-library/documentation /en/lwc/lwc.create_metadata_config_file Why Not the Other Options?References: