diff --git a/playgrounds/sandbox/run.js b/playgrounds/sandbox/run.js index 93d01a4b1079..2029937f52dc 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 });