Skip to content

Commit b8ec488

Browse files
authored
chore: Disable deployment for i18n branch (#12166)
<!-- Before opening a pull request, please read the [contributing guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md) first --> <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces a new `git` configuration to the `vercel.json` files in both the `apps/web` and `apps/solana` directories, specifically enabling or disabling deployment options for the `l10n_develop` environment. ### Detailed summary - In `apps/web/vercel.json`: - Added `git` configuration with `deploymentEnabled` for `l10n_develop` set to `false`. - In `apps/solana/vercel.json`: - Added a `$schema` reference. - Included `git` configuration with `deploymentEnabled` for `l10n_develop` set to `false`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 991e36e commit b8ec488

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

apps/solana/vercel.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"git": {
4+
"deploymentEnabled": {
5+
"l10n_develop": false
6+
}
7+
}
8+
}

apps/web/vercel.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@
55
"path": "/api/burn-statistics/update",
66
"schedule": "30 2 * * 2"
77
}
8-
]
8+
],
9+
"git": {
10+
"deploymentEnabled": {
11+
"l10n_develop": false
12+
}
13+
}
914
}

0 commit comments

Comments
 (0)