Skip to content

Instantly share code, notes, and snippets.

View NEO97online's full-sized avatar
🌐
Y3K

NEO97 NEO97online

🌐
Y3K
View GitHub Profile
@NEO97online
NEO97online / firebase.module.ts
Last active March 11, 2022 05:57
Angular Firebase Module boilerplate for AngularFire2 (using Firestore and Storage) NgModule
import { NgModule } from '@angular/core';
import { AngularFireModule } from 'angularfire2';
import { AngularFirestoreModule } from 'angularfire2/firestore';
import { AngularFireAuthModule } from 'angularfire2/auth';
import { AngularFireStorageModule } from 'angularfire2/storage';
import { environment } from '../../environments/environment';
import { FirestoreService } from './firestore.service';
import { StorageService } from './storage.service';