Skip to content

Commit 9a8db3c

Browse files
committed
Serve explorer from / - HEA-904
1 parent 0d4321e commit 9a8db3c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hea/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@
160160
name="asset_download_partitioned",
161161
),
162162
# Baseline Explorer React GUI using Django rev proxy to serve a cloudfront distro
163-
path("baseline-explorer/<path:path>", BaselineExplorerProxyView.as_view(), name="baseline_explorer"),
163+
path("<path:path>", BaselineExplorerProxyView.as_view(), name="baseline_explorer"),
164164
# The URL pattern below does not capture any path parameter from the URL. But django-revproxy views
165165
# require a path argument. We manually pass a default: {"path": ""}.
166-
path("baseline-explorer/", BaselineExplorerProxyView.as_view(), {"path": ""}, name="baseline_explorer"),
166+
path("", BaselineExplorerProxyView.as_view(), {"path": ""}, name="baseline_explorer"),
167167
]
168168

169169

0 commit comments

Comments
 (0)