From 10d8897104e8dd07453ba45e81fd6d8cf1a30c9c Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sat, 14 Sep 2024 13:21:44 +0200 Subject: [PATCH] fix: :hammer: Make dev script use Bun instead of Node --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4ccb7ea..99683b3 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ }, "scripts": { "build": "nuxt build", - "dev": "nuxt dev --https --https.cert config/versia-fe.localhost.pem --https.key config/versia-fe.localhost-key.pem --host versia-fe.localhost", + "dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 bun --bun nuxt dev --https --https.cert config/versia-fe.localhost.pem --https.key config/versia-fe.localhost-key.pem --host versia-fe.localhost", "generate": "nuxt generate", "preview": "nuxt preview", "postinstall": "nuxt prepare",