From 1c00289441098bf6dbf018c8ff9810b5f32e0c38 Mon Sep 17 00:00:00 2001 From: David Randall Date: Sun, 12 Nov 2023 16:33:19 -0500 Subject: [PATCH] Fix: First time developer setup --- .env.example | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 0983948f..652fe037 100644 --- a/.env.example +++ b/.env.example @@ -9,6 +9,7 @@ DEV_PORT = 80 USE_HTTPS = false -# Without this, Vue throws a "DOMException: The operation is insecure" error when because it's using ws://, not wss:// +# Vue throws a "DOMException: The operation is insecure" error when HTTPS is used on the frontend because it's using +# ws://. Setting DOCKER_BUILD causes Vue to use wss:// which solved the problem. # An alternative is to set "network.websocket.allowInsecureFromHTTPS = true" in Firefox. DOCKER_BUILD = true