From c9aefb6230f5e0bda03205ab0499f6e4af924495 Mon Sep 17 00:00:00 2001 From: Evan Czaplicki Date: Sun, 20 Oct 2019 10:31:43 -0400 Subject: [PATCH] allow Japanese guide to use inline REPL --- worker/src/Endpoint/Repl.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/worker/src/Endpoint/Repl.hs b/worker/src/Endpoint/Repl.hs index ff8026bc8..f77e60979 100644 --- a/worker/src/Endpoint/Repl.hs +++ b/worker/src/Endpoint/Repl.hs @@ -48,8 +48,9 @@ import qualified Reporting.Render.Type.Localizer as L allowedOrigins :: [String] allowedOrigins = - [ "https://elm-lang.org" - , "https://guide.elm-lang.org" + [ "https://guide.elm-lang.org" + , "https://guide.elm-lang.jp" + , "http://localhost:8007" ]