You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am trying to use photon(a wasm image pkg by rust) at my extsion. i got this error Module format "iife" does not support top-level await. Use the "es" or "system" output formats rather.
my wxt version 0.19.27 "@silvia-odwyer/photon": "^0.3.2",
i tried so many ways to solve this problem with helping from AI(cursor the editor), but they all failed.
so is there a way i can resovle this problem ?
here is my wxt config
import{defineConfig}from'wxt';importreactfrom'@vitejs/plugin-react';importwasmfrom"vite-plugin-wasm";importtopLevelAwaitfrom"vite-plugin-top-level-await";// See https://wxt.dev/api/config.htmlexportdefaultdefineConfig({manifest: {permissions: ["activeTab","scripting","sidePanel","storage","tabs","contextMenus","downloads"],action: {},name: '__MSG_extName__',description: '__MSG_extDescription__',default_locale: "en",content_security_policy: {extension_pages: "script-src 'self' 'wasm-unsafe-eval' http://localhost:3000; object-src 'self';",sandbox: "script-src 'self' 'unsafe-inline' 'unsafe-eval' http://localhost:3000; sandbox allow-scripts allow-forms allow-popups allow-modals; child-src 'self';"},},vite: ()=>({plugins: [react(),wasm(),topLevelAwait({// The export name of top-level await promise for each chunk modulepromiseExportName: "__tla",// The function to generate import names of top-level await promise in each chunk modulepromiseImportName: i=>`__tla_${i}`})],}),});
Describe the bug
i am trying to use photon(a wasm image pkg by rust) at my extsion. i got this error
Module format "iife" does not support top-level await. Use the "es" or "system" output formats rather.
my wxt version
0.19.27
"@silvia-odwyer/photon": "^0.3.2",
i tried so many ways to solve this problem with helping from AI(cursor the editor), but they all failed.
so is there a way i can resovle this problem ?
here is my wxt config
Reproduction
imgarc.zip
Steps to reproduce
run
npm run dev
System Info
Used Package Manager
npm
Validations
The text was updated successfully, but these errors were encountered: