The plasmo build process appears to be omitting so...
# support-framework
t
The plasmo build process appears to be omitting somethings that I'm putting into the manifest. I have a section in
package.json
that looks like this:
Copy code
"web_accessible_resources": [
    {
      "resources": ["_favicon/*"],
      "matches": [
        "http://localhost:3000/*",
        "https://*.mydomain.co/*",
        "https://mydomain.co/*"
      ]
    }
  ]
However when I run
dev
or
build
the manifest that gets generated seems to overwrite the resources key with an empty array (
{"resources": []}
) . One thing to note is that there are no files that match this path, in my bundler I'm generating those URLs at runtime the the
chrome.runtime.getURL()
call.
s
Thread automatically created by kartik in #978320682985349130