Skip to content

Commit

Permalink
fix: \n escaping in vite plugin (#4730)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlatMapIO authored Jul 5, 2023
1 parent 3cc1824 commit 8405356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/qwik/src/optimizer/src/plugins/vite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ export async function render(document, rootNode, opts) {
if (!window.__qwikViteLog) {
window.__qwikViteLog = true;
console.debug("%c⭐️ Qwik Client Mode","background: #0c75d2; color: white; padding: 2px 3px; border-radius: 2px; font-size: 0.8em;","Do not use this mode in production!\n - No portion of the application is pre-rendered on the server\n - All of the application is running eagerly in the browser\n - Optimizer/Serialization/Deserialization code is not exercised!");
console.debug("%c⭐️ Qwik Client Mode","background: #0c75d2; color: white; padding: 2px 3px; border-radius: 2px; font-size: 0.8em;","Do not use this mode in production!\\n - No portion of the application is pre-rendered on the server\\n - All of the application is running eagerly in the browser\\n - Optimizer/Serialization/Deserialization code is not exercised!");
}
}`;
}
Expand Down

0 comments on commit 8405356

Please sign in to comment.