diff --git a/server/utils/lang-passthrough-urls.js b/server/utils/lang-passthrough-urls.js index eeb56c7e01..8d32df15aa 100644 --- a/server/utils/lang-passthrough-urls.js +++ b/server/utils/lang-passthrough-urls.js @@ -1,6 +1,8 @@ export default [ 'auth', - 'services' + 'services', + 'link' ].reduce((throughs, route) => { - throughs[route] = true; return throughs; + throughs[route] = true; + return throughs; }, {});