70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"$schema": "./cms.schema.json",
|
|
"templates": [
|
|
{
|
|
"name": "marketing-landing",
|
|
"entry": "templates/marketing/index.tsx",
|
|
"description": "Default landing page for campaign microsites.",
|
|
"previewPath": "previews/marketing-landing.png"
|
|
},
|
|
{
|
|
"name": "docs-home",
|
|
"entry": "templates/docs/home.tsx",
|
|
"description": "Documentation homepage wiring search, changelog and highlights."
|
|
}
|
|
],
|
|
"theme": {
|
|
"name": "xcontrol-galaxy",
|
|
"version": "1.0.0",
|
|
"author": "XControl Design Systems",
|
|
"variables": {
|
|
"primaryColor": "#4055ff",
|
|
"accentColor": "#39c2f0",
|
|
"fontFamily": "Inter, system-ui, sans-serif"
|
|
}
|
|
},
|
|
"extensions": [
|
|
{
|
|
"name": "search",
|
|
"package": "@xcontrol/cms-extension-search",
|
|
"enabled": true,
|
|
"config": {
|
|
"provider": "algolia",
|
|
"indexName": "xcontrol_docs"
|
|
}
|
|
},
|
|
{
|
|
"name": "ab-testing",
|
|
"package": "@xcontrol/cms-extension-experiments",
|
|
"enabled": false,
|
|
"config": {
|
|
"allocation": "5%"
|
|
}
|
|
}
|
|
],
|
|
"contentSources": [
|
|
{
|
|
"type": "git",
|
|
"name": "marketing-site",
|
|
"readOnly": false,
|
|
"options": {
|
|
"remote": "git@github.com:xcontrol/marketing-site.git",
|
|
"branch": "main",
|
|
"contentPath": "content/"
|
|
}
|
|
},
|
|
{
|
|
"type": "filesystem",
|
|
"name": "product-docs",
|
|
"readOnly": true,
|
|
"options": {
|
|
"path": "../docs"
|
|
}
|
|
}
|
|
],
|
|
"deployment": {
|
|
"preview": true,
|
|
"defaultLocale": "en-US"
|
|
}
|
|
}
|