From 43a6b24ccb4032fecdb46595a60dc451f260bd34 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 1 Dec 2025 19:51:25 +0100 Subject: [PATCH] . --- apps/web/package.json | 2 +- modules/customers/src/web/components/customers-layout.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 6bfe9b4e..40440c2d 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -8,7 +8,7 @@ "build": "tsc && vite build", "build:rodax": "tsc && vite build --mode rodax", "build:acana": "tsc && vite build --mode acana", - "preview": "vite preview --host", + "preview": "vite preview --host --debug --mode production", "clean": "rm -rf dist && rm -rf node_modules && rm -rf .turbo", "check:deps": "pnpm exec depcheck", "lint": "biome lint --fix", diff --git a/modules/customers/src/web/components/customers-layout.tsx b/modules/customers/src/web/components/customers-layout.tsx index e971ea47..77d9a81c 100644 --- a/modules/customers/src/web/components/customers-layout.tsx +++ b/modules/customers/src/web/components/customers-layout.tsx @@ -1,4 +1,5 @@ -import { PropsWithChildren } from "react"; +import type { PropsWithChildren } from "react"; + import { CustomersProvider } from "../context"; export const CustomersLayout = ({ children }: PropsWithChildren) => {