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 7007ffb commit 2b506d7Copy full SHA for 2b506d7
packages/template-explorer/src/index.ts
@@ -42,7 +42,9 @@ window.init = () => {
42
)
43
// functions are not persistable, so delete it in case we sometimes need
44
// to debug with custom nodeTransforms
45
- delete persistedState.options.nodeTransforms
+ if (persistedState.options) {
46
+ delete persistedState.options.nodeTransforms
47
+ }
48
49
ssrMode.value = persistedState.ssr
50
Object.assign(compilerOptions, persistedState.options)
0 commit comments