From e4d52fb13695cadca281bdad516f2b86989c0bf7 Mon Sep 17 00:00:00 2001 From: Viacheslav Dobrynin <49430239+viacheslav-dobrynin@users.noreply.github.com> Date: Tue, 8 Apr 2025 16:17:51 +0400 Subject: [PATCH] fix: remove trailing comma to make JSON valid --- quickstart/server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/server.mdx b/quickstart/server.mdx index f401638..3ba7eb6 100644 --- a/quickstart/server.mdx +++ b/quickstart/server.mdx @@ -390,7 +390,7 @@ Update your package.json to add type: "module" and a build script: }, "files": [ "build" - ], + ] } ```