Skip to content

Instantly share code, notes, and snippets.

@mahammedzkhan
Last active March 4, 2019 12:31
Show Gist options
  • Save mahammedzkhan/5ba09c829c128224985e2352e8c231ac to your computer and use it in GitHub Desktop.
Save mahammedzkhan/5ba09c829c128224985e2352e8c231ac to your computer and use it in GitHub Desktop.
Vue-cli config for building to a single js file and no hashing and no chunks
// vue.config.js
module.exports = {
filenameHashing: false,
configureWebpack: {
output: {
filename: 'js/app.build.js',
},
optimization: {
splitChunks: false
},
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment