From 2a768b9572e77fbdbb13ed399d7be05be9ad4180 Mon Sep 17 00:00:00 2001 From: BayBreezy Date: Sat, 30 Dec 2023 06:58:30 -0500 Subject: [PATCH] chore: try build setup for stackblitz --- .stackblitzrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.stackblitzrc b/.stackblitzrc index 45eb485..63d8adb 100644 --- a/.stackblitzrc +++ b/.stackblitzrc @@ -1,5 +1,8 @@ { "installDependencies": true, - "startCommand": "cd ./playground && npm i && cd .. && npm i && npm run dev:prepare && npm run dev", - "compileTrigger": "save" + "startCommand": "cd ./playground && npm i && cd ../ && npm run dev:build && node .output/server/index.mjs", + "compileTrigger": "save", + "env": { + "NODE_ENV": "production" + } }