Add make target to deploy to Firebase
The configuration file has been split into 2: one for development mode
and another one for production mode.
Change-Id: I12917cd79c95642adc30004be5bc1a927bca389b
diff --git a/firebase.json b/firebase.json
new file mode 100644
index 0000000..bae5b7b
--- /dev/null
+++ b/firebase.json
@@ -0,0 +1,17 @@
+{
+ "hosting": {
+ "target": "twpt-dashboard",
+ "public": "frontend/dist",
+ "ignore": [
+ "firebase.json",
+ "**/.*",
+ "**/node_modules/**"
+ ],
+ "rewrites": [
+ {
+ "source": "**",
+ "destination": "/index.html"
+ }
+ ]
+ }
+}