Я создаю веб-приложение Angular, и я импортировал это так:
import * as firebase from 'firebase';
db = firebase.firestore();
Но в последнее время я получаю эту ошибку:
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):
Typescript:
import * as firebase from 'firebase/app';
import 'firebase/<PACKAGE>';
и так, естественно,Я изменил это на это:
import * as firebase from 'firebase/app';
import 'firebase/firestore';
db = firebase.firestore();
, но ошибка не исчезла.Я не понимаю, как это удалить?