Я использую Firebase в веб-приложении React, и мне нужно использовать firebase.firestore.FieldValue.serverTimestamp()
и некоторые другие методы.
Однако, чтобы получить ссылку на Firebase, я импортирую import * as firebase from "firebase";
. import выдает мне следующее консольное предупреждение:
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>';
Typescript:
import * as firebase from 'firebase/app';
import 'firebase/<PACKAGE>';
Как мне импортировать firebase.firestore.FieldValue.serverTimestamp()
без импорта всей библиотеки firebase?