From 5724225c987dcefeac945e79711bd33abc6a27cc Mon Sep 17 00:00:00 2001 From: Hyeseong Kim Date: Thu, 4 Sep 2025 22:50:24 +0900 Subject: [PATCH] fix playground endpoint for production Fixes a loading error introduced by b7e5ae103f380e18303ab017100d75281f9bb1fc Closes #1100 --- src/Try.res | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Try.res b/src/Try.res index 88ab78268..7a1122d74 100644 --- a/src/Try.res +++ b/src/Try.res @@ -61,7 +61,7 @@ let getStaticProps: Next.GetStaticProps.t = async _ => { } | (None, _) => ( // Use same-origin requests for the bundle - "", + "/playground-bundles", // There is no version endpoint in the build phase "https://cdn.rescript-lang.org", )