cloudflare-next-intl 0.8.44 → 0.8.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -34,6 +34,8 @@ export const defaultIgnoredConsoleErrors = [
|
|
|
34
34
|
"FirebaseServerApp authIdToken is invalid: the token has expired.",
|
|
35
35
|
"failed Error: Database is closing/hidden",
|
|
36
36
|
'Failed to fetch RSC payload',
|
|
37
|
+
'The above error occurred in a React component',
|
|
38
|
+
'The connection to the page was unexpectedly closed',
|
|
37
39
|
...(process.env.NODE_ENV === 'development'
|
|
38
40
|
? ['A DurableObjectNamespace in the config referenced the class "DOQueueHandler", but no such Durable Object class is exported from the worker. Please make sure the class name matches,']
|
|
39
41
|
: []),
|
|
@@ -5,6 +5,8 @@ export const defaultStaleDeployPatterns = [
|
|
|
5
5
|
'connection closed',
|
|
6
6
|
'rsc payload',
|
|
7
7
|
'minified react error #412',
|
|
8
|
+
'the above error occurred in a react component',
|
|
9
|
+
'the connection to the page was unexpectedly closed',
|
|
8
10
|
];
|
|
9
11
|
let activePatterns = defaultStaleDeployPatterns;
|
|
10
12
|
let activeLowercasedPatterns = defaultStaleDeployPatterns.map((p) => p.toLowerCase());
|