diff --git a/packages/daemon/src/daemon-node-powers.js b/packages/daemon/src/daemon-node-powers.js index 13ee9d2354..e6aaa82258 100644 --- a/packages/daemon/src/daemon-node-powers.js +++ b/packages/daemon/src/daemon-node-powers.js @@ -558,14 +558,16 @@ export const makeDaemonicPersistencePowers = ( await filePowers.writeFileText(file, `${q(formula)}\n`); }; - const webPageBundlerFormula = includeWebPageBundler ? { - type: /** @type {'import-unsafe'} */ ('import-unsafe'), - worker: `worker-id512:${zero512}`, - powers: 'host', - importPath: fileURLToPath( - new URL('web-page-bundler.js', import.meta.url).href, - ), - } : undefined; + const webPageBundlerFormula = includeWebPageBundler + ? { + type: /** @type {'import-unsafe'} */ ('import-unsafe'), + worker: `worker-id512:${zero512}`, + powers: 'host', + importPath: fileURLToPath( + new URL('web-page-bundler.js', import.meta.url).href, + ), + } + : undefined; return harden({ initializePersistence,