diff --git a/site/static/workers/compiler.js b/site/static/workers/compiler.js index 9c79eebe44..0583186dc7 100644 --- a/site/static/workers/compiler.js +++ b/site/static/workers/compiler.js @@ -37,7 +37,7 @@ function compile({ source, options, entry }) { ); const props = entry - ? (vars || stats.vars).map(v => v.export_name).filter(Boolean) // TODO remove stats post-launch + ? (vars || stats.vars).map(v => v.writable && v.export_name).filter(Boolean) // TODO remove stats post-launch : null; return { js: js.code, css: css.code, props };