You make changes to the internal webpack config with the vue.config.js
file at the project root (you may need to create it manually).
There is a productionSourceMap
option so you can disable source maps when building for production:
module.exports = {
productionSourceMap: false
};