I have "Load Unpack"ed my client-side + server-side(node.js) extension, and I get this error on the service worker.
In this thread the solution regards to chrome certificate, so i checked my certificate in chrome and it is outdated, but I'm not sure if it's relevant to my case. In the chrome documentation, no certificates are mentioned as a requirement.
Here's my service worker ("type": "module"):
import PythonShell from './node_modules/python-shell';
import express from './node_modules/@types/express';
const app = express();
app.use(express.static('public'));
app.use(express.json({limit: '1mb'}))
app.post('/api', (request, response)=>{
...
)}
PythonShell.run(...
{
});
});