From e3309a1e688c168aa1b4b3dbeb0b04dec3d2b846 Mon Sep 17 00:00:00 2001 From: Stephen Crain Date: Fri, 31 May 2019 20:11:20 -0700 Subject: [PATCH] enable inline source maps by default (#2553) --- vnext/ReactWindowsCore/DevServerHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnext/ReactWindowsCore/DevServerHelper.h b/vnext/ReactWindowsCore/DevServerHelper.h index a179320210c..ceb5a09d2dc 100644 --- a/vnext/ReactWindowsCore/DevServerHelper.h +++ b/vnext/ReactWindowsCore/DevServerHelper.h @@ -42,7 +42,7 @@ class DevServerHelper } static constexpr const char s_DeviceLocalhost[] = "localhost:8081"; - static constexpr const char BundleUrlFormat[] = "http://%s/%s.bundle?platform=%s&dev=%s&hot=%s"; + static constexpr const char BundleUrlFormat[] = "http://%s/%s.bundle?platform=%s&dev=%s&hot=%s&inlineSourceMap=true"; static constexpr const char SourceMapUrlFormat[] = "http://%s/%s.map?platform=%s&dev=%s&hot=%s"; static constexpr const char LaunchDevToolsCommandUrlFormat[] = "http://%s/launch-js-devtools"; static constexpr const char OnChangeEndpointUrlFormat[] = "http://%s/onchange";