How to prevent vue-cli3 from compressing js files during npm run build

how does vue-cli3 prevent compressing js files during npm run build
I don"t want to compress js after packing files, because I want to debug the code online, how can I configure it in vue.config.js? Ask the boss for advice. -sharp-sharp-sharp problem description

Jul.18,2022

you can turn on productSourceMap so that after packaging, you can see the complete source code online instead of the compiled code.

Menu