I am getting this error DOMException: The operation is insecure. and the whole thing seems to start at this simple init code:
import React from 'react';
import ReactDOM from 'react-dom';
import App from './src/app/App';
ReactDOM.render(<App />, document.querySelector('#root'));
It only happens in an <iframe src="... - my locally served page with React - ..."> and only in Firefox (104).
The JavaScript files are served with the following headers:
Content-Security-Policy: default-src 'self'; style-src 'self' 'unsafe-inline'; object-src 'none'
Content-Type: application/javascript
Any help is appreciated, I am out of ideas!