[Vuejs]-Vuejs cross origin blocked

0👍

It looks like it has something to do with WebSockets.

Can you try this syntax?

proxy: { '/': { target: 'http://localhost:8080', ws: true }, }

More info here.
Maybe check out this question tho (WebSockets!).

Leave a comment