我正在使用Firebase Google登录名。但是这样的控制台会引发错误
It looks like you're using the development build of the Firebase JS
SDK.
When deploying Firebase apps to production, it is advisable to only
import
the individual SDK components you intend to use.
For the module builds, these are available in the following manner
(replace <PACKAGE> with the name of a component - i.e. auth, database,
etc):
CommonJS Modules:
const firebase = require('firebase/app');
require('firebase/<PACKAGE>');
ES Modules:
import firebase from 'firebase/app';
import 'firebase/<PACKAGE>';
index.cjs.js:125
Content Security Policy: Directive ‘child-src’ has been deprecated.
Please
use directive ‘worker-src’ to control workers, or directive ‘frame-
src’ to control frames respectively.
任何人都可以告诉我如何解决这个问题?