Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
smartinellibenedetti committed Feb 29, 2024
1 parent 87914c7 commit 20dbb2d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion rundeckapp/grails-spa/packages/ui-trellis/vue.config.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,12 @@ module.exports = {
},
},
output: {
filename: "[name].js",
filename: (asset) => {
if (asset.chunk.name.includes("chunk")) {
return "js/[name].js";
}
return "[name].js";
},
library: "rundeckCore",
},
devServer: {
Expand Down

0 comments on commit 20dbb2d

Please sign in to comment.