UNPKG

@nxextensions/firebase

Version:

An Nx plugin for firebase applications that would like to run the emulators in conjunction with their app

35 lines (24 loc) 693 B
[![NPM License](https://img.shields.io/npm/l/%40nxextensions%2Ffirebase)]() [![NPM Version](https://img.shields.io/npm/v/%40nxextensions%2Ffirebase)]() # Nx Firebase A plugin for Nx that auto-detects Firebase in your project and starts the emulators with your app, or deploys your application when ready. ## Installation `npm i @nxextensions/firebase --save-dev` or run: `nx add @nxextensions/firebase` to automatically configure and install the plugin. ## Configuration In `nx.json` add: ```json { "plugins": [ { "plugin": "@nxextensions/firebase", "options": { "serveTargetName": "serve-firebase" } } ] } ```