I had a problem reading console output while runni...
# compose-desktop
r
I had a problem reading console output while running the distributable. If anyone needs to read the stacktrace for example, just add:
Copy code
compose.desktop {
    application {
        ...
        nativeDistributions {
            ...
            windows {
                console = true
                ...
            }
        }
    }
}
👍 1