From 1b6747bb7750724b8fa922c67a7d838a26992562 Mon Sep 17 00:00:00 2001 From: Hugo Richard Date: Thu, 2 Jul 2026 09:10:13 +0100 Subject: [PATCH] chore(scripts): remove tmpdir prefix and add dev:ui script This allow to start the dev server without Nuxi (eve) --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 83cac1d7f..0333bb93b 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,9 @@ "packageManager": "pnpm@11.9.0", "type": "module", "scripts": { - "dev": "TMPDIR=/tmp nuxt dev --ui-only", - "dev:full": "TMPDIR=/tmp nuxt dev", + "dev": "nuxt dev --ui-only", + "dev:ui": "EVE_BASE_URL=http://127.0.0.1:1 nuxt dev --ui-only", + "dev:full": "nuxt dev", "build": "NODE_OPTIONS='--max-old-space-size=8192' nuxt build", "preview": "nuxt preview", "postinstall": "nuxt prepare",