From ddc09f0aa1dc55783d71c75dc696add910b46e23 Mon Sep 17 00:00:00 2001 From: becem-gharbi Date: Mon, 16 Oct 2023 19:39:17 +0100 Subject: [PATCH] chore(playground): Revert changes --- playground/example.env | 3 --- playground/nitro.config.ts | 11 +---------- playground/routes/config.ts | 5 ----- 3 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 playground/example.env delete mode 100644 playground/routes/config.ts diff --git a/playground/example.env b/playground/example.env deleted file mode 100644 index 9216f3e2b3..0000000000 --- a/playground/example.env +++ /dev/null @@ -1,3 +0,0 @@ -NITRO_FEATURE=false -NITRO_FEATURE_OPTIONS=false -NITRO_FEATURE_OPTIONS_OPTION_A=false \ No newline at end of file diff --git a/playground/nitro.config.ts b/playground/nitro.config.ts index cbdc434de1..a763adbd67 100644 --- a/playground/nitro.config.ts +++ b/playground/nitro.config.ts @@ -1,10 +1 @@ -export default defineNitroConfig({ - runtimeConfig: { - feature: { - options: { - optionA: true, - optionB: true - } - } - } -}); +export default defineNitroConfig({}); \ No newline at end of file diff --git a/playground/routes/config.ts b/playground/routes/config.ts deleted file mode 100644 index 992c139def..0000000000 --- a/playground/routes/config.ts +++ /dev/null @@ -1,5 +0,0 @@ -// eslint-disable-next-line require-await -export default eventHandler(async (event) => { - const config = useRuntimeConfig() - return config; -});