I’m using the react template to start an app for t...
# javascript
s
I’m using the react template to start an app for the 1.4.0 RC. Even the basic template runs VERY slow with webpack (I’m guessing it has something to do with the packed output being a 22 MB file). For dev, I’d like to not rely on webpack because it increases my compile times substantially. What are my options for removing webpack from the dev experience, and getting my compile times to something sane?
a
Let me know if this helps
Copy code
runTask {
    enabled = false
}
webpackTask {
    enabled = false
}
s
I did this, and the server doesn’t seem to start anymore with the
browserDevelopmentRun
command.
I tried grabbing the files directly from the DCE directory and including them in a custom html file that I host myself, but I ended up finding this issue, and I don’t have an obvious way around it: https://youtrack.jetbrains.com/issue/KT-40705