fix(extension): remove orphaned ternary fragment from wxt.config.ts

Lines 110-115 contained a leftover dynamic-manifest ternary fragment
with no condition — broke parse and prevented `pnpm exec wxt build`
from running. Drop the dead code; manifest defines stay in the inline
manifest field above and tenant overlays via manifest.overlay.json.
This commit is contained in:
Hanzo AI
2026-06-10 22:35:40 -07:00
committed by zeekay
parent d8f73616f0
commit 79a4645aac
-7
View File
@@ -107,13 +107,6 @@ export default defineConfig({
},
},
// Dynamic manifest generation
? ['https://app.uniswap.org/*']
: ['https://app.uniswap.org/*', 'https://ew.unihq.org/*', 'https://*.ew.unihq.org/*'],
},
}
},
// Vite configuration copied from web project
vite: (env) => {
// Load ALL env variables (including those without VITE_ prefix)