From 9a2256a3424a89eff6f37b2defccac9e384f5619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=80=E7=BA=B8=E5=BF=98=E5=BF=A7?= <54543761+ikxin@users.noreply.github.com> Date: Thu, 25 Jul 2024 23:21:51 +0800 Subject: [PATCH] docs: add missing comma to example (#28300) --- packages/schema/src/config/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schema/src/config/common.ts b/packages/schema/src/config/common.ts index 05ab786d49..b338ffd6b3 100644 --- a/packages/schema/src/config/common.ts +++ b/packages/schema/src/config/common.ts @@ -554,7 +554,7 @@ export default defineUntypedSchema({ * ```js * export default { * runtimeConfig: { - * apiKey: '' // Default to an empty string, automatically set at runtime using process.env.NUXT_API_KEY + * apiKey: '', // Default to an empty string, automatically set at runtime using process.env.NUXT_API_KEY * public: { * baseURL: '' // Exposed to the frontend as well. * }