I noticed that the `config.output.filename` proper...
# javascript
f
I noticed that the
config.output.filename
property in
webpack.config.js
auto generated file changed in the kotlin JS 1.3.50. Is there any way to customize it?
Copy code
config.entry.push("/Users/felipecosta/github/chat-app/build/js/packages/chatapp-frontend/kotlin/chatapp-frontend.js");
config.output = {
    path: "/Users/felipecosta/github/chat-app/frontend/build/distributions",
    filename: "frontend-1.0-SNAPSHOT.js"
};
s
I think you can mutate it with javascript in the
webpack.config.d
folder
s
f
Thanks! It worked!
❤️ 1