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 b523d75 commit 7819ebbCopy full SHA for 7819ebb
packages/vite-plugin-svelte/src/utils/log.ts
@@ -123,9 +123,10 @@ export function logCompilerWarnings(
123
const extra = buildExtraWarnings(warnings, isBuild);
124
const allWarnings = [...notIgnored, ...extra];
125
if (sendViaWS) {
126
+ const _warn = warn;
127
warn = (w: Warning) => {
128
handledByDefaultWarn.push(w);
- warn(w);
129
+ _warn(w);
130
};
131
}
132
allWarnings.forEach((warning) => {
0 commit comments