In the webpack.config.js
file we can set entry file as below.
module.exports = (env = {}, argv = {}) => {
const config = {
entry: {
main: './src/js/main.js'
},
}
}
But in vue.config.js
file, how to declare the entry file? I have checked in doc. but there is property such that.
outputDir
. Want to change output file name. Is there any way to change? – Sapwood