[Vuejs]-Laravel/ VueJS project – Console Error not showing where the error is located

0👍

Try putting this in your webpack.mix.js file:

mix.sourceMaps();

This will show you where the error is located in the uncompiled code.

Leave a comment