Answer the question
In order to leave comments, you need to log in
How to generate single js file on every change of vue files?
How to configure vue.config.js so that every update of vue/js files generates one final js file in dist? Like during the build, only without compression and for every change in vue / js files.
Answer the question
In order to leave comments, you need to log in
Here is a partial vue.config.js example
module.exports = {
configureWebpack: {
optimization: {
splitChunks: false,
minimize: false,
},
},
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question