Skip to content

Commit 19083f3

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 68569f8 commit 19083f3

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)