Skip to content

Commit a10307b

Browse files
committed
Disable i18n debug
The web console logs are being swamped with "missing key" messages by i18n. Unfortunately, most of these are false positives and thus do not help at all in finding actual missing keys. This commit disables the debug mode in i18n which stops the messages.
1 parent 5b4c6e9 commit a10307b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/i18n/i18n.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ i18n
5454
.init<HttpBackendOptions>({
5555
resources,
5656
fallbackLng: "en-US",
57-
debug: true,
57+
debug: false,
5858

5959
interpolation: {
6060
escapeValue: false,

0 commit comments

Comments
 (0)