[Vuejs]-How do I see/debug the full source in .vue files?

0👍

sometime sources-map file will parse failed. clean the cache and refresh try again.
if it still.change config.devtool value to inline-source-map.

0👍

According to the Webpack documentation, cheap-module-source-map are one of the special cases. You should try one of the recommended values for development instead unless you have a special requirement.

Other than that, I briefly check your source map and I think it is working correctly. However, according to this comment, you could write some code to make the source map files stand out more:

For me the source maps were working, but they were just piled in a heap of other files which made it painful to find. This worked for me to filter out the "real" ones from the garbage. My project is set up fairly standard using Vue-CLI, Vue 3, and TypeScript.

Leave a comment