Hi what is good channel to ask about gradle browse...
# react
p
Hi what is good channel to ask about gradle browserDistribution task I am trying to see if I can pin to specific webpack release I see we can pin to Major version https://kotlinlang.org/docs/js-project-setup.html#webpack-version Can we pin to specific minor verson as well ? we are running into an issue
Copy code
entrypoint size limit: The following entrypoint(s) combined asset size exceeds
and during the build this doesn't generate entry-point-file.js needed to run our react app We are using gradle 8.6. which specific webpack is this version tied to... how can I see this As we suspect the latest release https://github.com/webpack/webpack/releases/tag/v5.90.3
t
To configure Webpack version you can use following code.
Or just apply latest-webpack plugin
p
thank you