diff --git a/divshot.json b/divshot.json deleted file mode 100644 index 97f0047..0000000 --- a/divshot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "clostridiumdotinfo", - "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..fe0de1f --- /dev/null +++ b/firebase.json @@ -0,0 +1,23 @@ +{ + "firebase": "clostridium-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" + } + ] +}