From c890d9a46b1483cf5857d8fd9d694ea6a06a9a2e Mon Sep 17 00:00:00 2001 From: Maxime Locqueville Date: Thu, 1 Jun 2017 08:11:06 +0200 Subject: [PATCH] Fix search redirect --- _includes/scripts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/scripts.html b/_includes/scripts.html index b9a83876b9..bc411c2265 100644 --- a/_includes/scripts.html +++ b/_includes/scripts.html @@ -31,7 +31,7 @@ inputSelector: '#search-input', transformData: function (hits) { return hits.map(function (hit) { - hit.url = hit.url.replace('https://v4-alpha.getbootstrap.com', 'http://localhost:9001/docs/4.0'); + hit.url = hit.url.replace('https://v4-alpha.getbootstrap.com', '/docs/4.0'); return hit; }); }, -- 2.47.2