fix(docs): update schema URL in share configuration examples across multiple languages (#15114)

This commit is contained in:
OpeOginni 2026-02-26 00:16:39 +01:00 committed by GitHub
commit 444178e079
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 54 additions and 54 deletions

View file

@ -41,7 +41,7 @@ To explicitly set manual mode in your [config file](/docs/config):
```json title="opencode.json"
{
"$schema": "https://opncd.ai/config.json",
"$schema": "https://opencode.ai/config.json",
"share": "manual"
}
```
@ -54,7 +54,7 @@ You can enable automatic sharing for all new conversations by setting the `share
```json title="opencode.json"
{
"$schema": "https://opncd.ai/config.json",
"$schema": "https://opencode.ai/config.json",
"share": "auto"
}
```
@ -69,7 +69,7 @@ You can disable sharing entirely by setting the `share` option to `"disabled"` i
```json title="opencode.json"
{
"$schema": "https://opncd.ai/config.json",
"$schema": "https://opencode.ai/config.json",
"share": "disabled"
}
```