Last active
March 4, 2019 12:31
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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