@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
Markdown
[]()
[]()
# 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"
}
}
]
}
```