Plugin deployment error

i recently develop a test plugin , in dev mode , plugin run fine , but when i install the json file through the operator dashboard , i’m getting an error in the webview
image
but in the browser javascript console
image

Anyone has any idea how to deploy the plugin after running the production build .
since i’m new the docs are not fully clear to me in the live deployment , is thereany other steps that i miss .

2 Likes

You need to upload the web_view file (fiat-to-tether__view.js) on a public storage. and set the file address in your plugin web_view.json:

{
    "web_view": [
        {
            "src": "your-public-storage-address.com/fiat-to-tether__view.js",
....

then create a new build.

2 Likes

Where is this (fiat-to-tether__view.js) is located or it’s the same onei have on localhost:8080/config.json

Please disregard i found where the fiat-to-tether__view.js was located. it’s working now

1 Like