We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68855cf commit 3206d9aCopy full SHA for 3206d9a
src/transform.ts
@@ -316,7 +316,8 @@ async function doCompileScript(
316
317
return [code, compiledScript.bindings]
318
} else {
319
- return [`\nconst ${COMP_IDENTIFIER} = {}`, undefined]
+ const vaporFlag = descriptor.vapor ? '__vapor: true' :''
320
+ return [`\nconst ${COMP_IDENTIFIER} = { ${vaporFlag} }`, undefined]
321
}
322
323
0 commit comments