Icon/Font issue on windows
Author: MillosaursCreated Oct 22, 2025Updated Oct 23, 2025
Labelsbug
Environment
NODE: LTS 22 Consola: 3.4.2
Reproduction
In windows when running the example syntax.
// ESM
import { consola, createConsola } from "consola";
// CommonJS
const { consola, createConsola } = require("consola");
consola.info("Using consola 3.0.0");
consola.start("Building project...");
consola.warn("A new version of consola is available: 3.0.1");
consola.success("Project built!");
consola.error(new Error("This is an example error. Everything is fine!"));
consola.box("I am a simple box");
await consola.prompt("Deploy to the production?", {
type: "confirm",
})
;Describe the bug
I get weird issues regarding color, spacing, icons
Additional context
No response
Logs
Source: unjs/consola