diff --git a/components/realtime/socketio.vue b/components/realtime/socketio.vue
index 322fd9094..2d0239645 100644
--- a/components/realtime/socketio.vue
+++ b/components/realtime/socketio.vue
@@ -13,6 +13,16 @@
@keyup.enter="urlValid ? toggleConnection() : null"
/>
+
+
+
+
+
+
@@ -28,7 +38,6 @@
-
-
@@ -84,6 +93,7 @@ export default {
data() {
return {
url: "ws://",
+ path: "/socket.io",
connectionState: false,
io: null,
communication: {
@@ -115,7 +125,12 @@ export default {
]
try {
- this.io = new io(this.url)
+ if(!this.path){
+ this.path = '/socket.io'
+ }
+ this.io = new io(this.url,{
+ path: this.path
+ })
// Add ability to listen to all events
wildcard(io.Manager)(this.io)
this.io.on("connect", () => {