thousands-horse-90118
09/02/2022, 11:48 PMpackage.json
that looks like this:
"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.sticky-dress-98131
09/02/2022, 11:48 PM