From 0868576a72e90f4199fe588624a5e0bf2772891d Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 29 Oct 2015 12:05:28 -0700 Subject: [PATCH] Addresses #24 Divshot was purchased by Firebase --- divshot.json | 9 --------- firebase.json | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 9 deletions(-) delete mode 100644 divshot.json create mode 100644 firebase.json diff --git a/divshot.json b/divshot.json deleted file mode 100644 index f879f3c..0000000 --- a/divshot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "hymenobacterdotinfo", - "root": "./dist", - "routes": { - "/tests": "tests/index.html", - "/tests/**": "tests/index.html", - "/**": "index.html" - } -} diff --git a/firebase.json b/firebase.json new file mode 100644 index 0000000..436b0cf --- /dev/null +++ b/firebase.json @@ -0,0 +1,23 @@ +{ + "firebase": "hymenobacter-test", + "public": "./dist", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "/tests", + "destination": "/tests/index.html" + }, + { + "source": "/tests/**", + "destination": "/tests/index.html" + }, + { + "source": "/**", + "destination": "/index.html" + } + ] +}