mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-08-03 13:44:09 +08:00
22 lines
752 B
Markdown
22 lines
752 B
Markdown
# Configure Metadata: DigitalExperienceConfig
|
|
|
|
## Purpose
|
|
This configuration file creates a **net-new, default** DigitalExperienceConfig metadata record for a Digital Experience React Site. It is not intended to edit or modify an existing DigitalExperienceConfig record. Use this template only when provisioning a brand-new React site.
|
|
|
|
## File Location
|
|
```
|
|
digitalExperienceConfigs/{siteName}1.digitalExperienceConfig-meta.xml
|
|
```
|
|
|
|
## Default Template
|
|
```xml
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<DigitalExperienceConfig xmlns="http://soap.sforce.com/2006/04/metadata">
|
|
<label>{siteName}</label>
|
|
<site>
|
|
<urlPathPrefix>{siteUrlPathPrefix}</urlPathPrefix>
|
|
</site>
|
|
<space>site/{siteName}1</space>
|
|
</DigitalExperienceConfig>
|
|
```
|