We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b6570 commit 784c501Copy full SHA for 784c501
app.config.ts
@@ -14,6 +14,12 @@ export default defineConfig({
14
const replacements = [
15
// replace `throw Error(p(418))` with `console.error(p(418))`
16
['throw Error(p(418))', 'console.error(p(418))'],
17
+ ['Error(p(418))', 'console.error(p(418))'],
18
+ ['throw Error(n(418))', 'console.error(n(418))'],
19
+ ['Error(n(418))', 'console.error(n(418))'],
20
+ ['throw Error(p(423))', 'console.error(p(423))'],
21
+ ['throw Error(n(423))', 'console.error(n(423))'],
22
+ ['Error(n(423))', 'console.error(n(423))'],
23
// replace `throw new Error('Hydration failed` with `console.error('Hydration failed')`
24
[
25
`throw new Error('Hydration failed`,
0 commit comments