From 4e812e73cb15567db191f10eee28ede8b3361619 Mon Sep 17 00:00:00 2001 From: Heat Hamilton <55773810+heatlikeheatwave@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:54:52 -0500 Subject: [PATCH] Added permanent: true to redirects to fix build error (#4301) --- website/redirects.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/redirects.js b/website/redirects.js index 5593cf52a6..8d1e0176d3 100644 --- a/website/redirects.js +++ b/website/redirects.js @@ -140,15 +140,18 @@ module.exports = [ }, { source: '/boundary/docs/common-workflows/workflow-ssh-proxycommand', - destination: '/boundary/docs/concepts/connection-workflows/workflow-ssh-proxycommand', + destination: + '/boundary/docs/concepts/connection-workflows/workflow-ssh-proxycommand', permanent: true, }, { source: '/boundary/docs/api-clients/cli', destination: '/boundary/docs/commands/', + permanent: true, }, { source: '/boundary/docs/concepts/service-discovery', destination: '/boundary/docs/concepts/host-discovery', - } + permanent: true, + }, ]