Note for everybody who wants to speed up build tim...
# compose-web
d
Note for everybody who wants to speed up build times and doesnt debug in the browser. Removing
Copy code
devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply {
    static = (static ?: mutableListOf()).apply {
        // Serve sources to debug inside browser
        add(rootDirPath)
        add(projectDirPath)
    }
}
from build.gradle will reduce webpack bundling part, making the web page show up immediatelly after the tab opens.
👍 2