From 130e37617cbaf141c89019797950f5361a4b3a01 Mon Sep 17 00:00:00 2001 From: Vesa Meskanen Date: Mon, 20 Jan 2025 15:36:24 +0200 Subject: [PATCH] chore: enable navigation aid in matka dev --- app/configurations/config.matka.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/configurations/config.matka.js b/app/configurations/config.matka.js index c6fed90746..83effa171d 100644 --- a/app/configurations/config.matka.js +++ b/app/configurations/config.matka.js @@ -436,4 +436,10 @@ export default { value: 1800, }, ], + // features that should not be deployed to production + experimental: { + navigation: + process.env.RUN_ENV === 'development' || + process.env.NODE_ENV !== 'production', + }, };