From 7522f99dd8771ecaec7aaf12e0029a85d37ae2d7 Mon Sep 17 00:00:00 2001 From: mbaharip <62494292+mbahArip@users.noreply.github.com> Date: Tue, 21 Jan 2025 22:06:22 +0700 Subject: [PATCH] wip: internal page (guide, configurator, embed) --- src/constant.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/constant.ts b/src/constant.ts index f7777eb..19c809a 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -37,3 +37,8 @@ export const COOKIES_OPTIONS = { httpOnly: true, maxAge: COOKIES_AGE * 1000, } as const; + +/** + * On this paths, navbar and footer will not be rendered + */ +export const NO_LAYOUT_PATHS = [/\/_\/embed\//g];