From d4af83a0582e3e022c3eb8376e23638d30ac0b44 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 28 May 2025 18:33:55 -0400 Subject: [PATCH] chore: use dev: false in sandbox (#16022) --- playgrounds/sandbox/run.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playgrounds/sandbox/run.js b/playgrounds/sandbox/run.js index 93d01a4b10..2029937f52 100644 --- a/playgrounds/sandbox/run.js +++ b/playgrounds/sandbox/run.js @@ -73,7 +73,7 @@ for (const generate of /** @type {const} */ (['client', 'server'])) { } const compiled = compile(source, { - dev: true, + dev: false, filename: input, generate, runes: argv.values.runes @@ -90,7 +90,7 @@ for (const generate of /** @type {const} */ (['client', 'server'])) { // generate with fragments: 'tree' if (generate === 'client') { const compiled = compile(source, { - dev: true, + dev: false, filename: input, generate, runes: argv.values.runes, @@ -114,7 +114,7 @@ for (const generate of /** @type {const} */ (['client', 'server'])) { const source = fs.readFileSync(input, 'utf-8'); const compiled = compileModule(source, { - dev: true, + dev: false, filename: input, generate });