3π
β
On your dist folder the files are combined minifided to make delivering them from the server more efficient.
Next to this files you will see a *.map file. This is the source map. This is a file that maps from the transformed source to the original source, enabling the browser to reconstruct the original source and present the reconstructed original in the debugger (in your example Chrome Dev Tools).
You can turn off this option as explained in the vue-cli docs default is set to true
π€Andres Abadia
Source:stackexchange.com