fcosta
08/27/2019, 12:12 PMconfig.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?
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"
};
spand
08/27/2019, 12:14 PMwebpack.config.d
folderSubroh Nishikori
08/27/2019, 12:19 PMarchiveFileName
property on v1.3.50.
Like this.
https://github.com/subroh0508/kotlin-react-sample/blob/9885bdff8252914fe90178aea43267f0446981aa/build.gradle#L21-L27fcosta
08/27/2019, 11:48 PM