1👍
✅
You can disable source maps from being generated when producing production builds by using the productionSourceMap
config element in your vue.config.js
file:
// vue.config.js
module.exports = {
...
productionSourceMap: false,
...
};
Source:stackexchange.com