[Vuejs]-Uncaught runtime errors: ERROR [object Object] VUE JS,NODE

0👍

module.exports = {
  //...
  devServer: {
    client: {
      overlay: {
        errors: true,
        warnings: false,
        runtimeErrors: true,
      },
    },
  },
};

0👍

Check your network tab, there might be 404 request

Leave a comment