From 920b399e0f699bc15d56070b9aaead608c2fdcf8 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 3 Mar 2024 16:03:09 +0100 Subject: [PATCH] chore: update `hello-world` example --- examples/hello-world/nitro.config.ts | 4 ++-- examples/hello-world/package.json | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/hello-world/nitro.config.ts b/examples/hello-world/nitro.config.ts index b6e91c84f7..234d9ef730 100644 --- a/examples/hello-world/nitro.config.ts +++ b/examples/hello-world/nitro.config.ts @@ -1,4 +1,4 @@ -//https://nitro.unjs.io/config +// https://nitro.unjs.io/config export default defineNitroConfig({ - srcDir: "server" + srcDir: "server", }); diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index 94d32546a5..0ef33628a5 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -3,7 +3,6 @@ "scripts": { "build": "nitro build", "dev": "nitro dev", - "prepare": "nitro prepare", "preview": "node .output/server/index.mjs" }, "devDependencies": {