From 16e342e8d195169a8cbe7b7e6fd499671f812cd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jefferson=20Gir=C3=A3o?= Date: Mon, 3 Feb 2020 14:31:17 +0100 Subject: [PATCH] chore: deploy it with zeit now * Install now (https://github.com/zeit/now) npm i -g now * Deploy it with now --- frontend/now.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/now.json diff --git a/frontend/now.json b/frontend/now.json new file mode 100644 index 0000000000..8ba35b1e6d --- /dev/null +++ b/frontend/now.json @@ -0,0 +1,9 @@ +{ + "version": 2, + "builds": [ + { "src": "./packages/app/build/**", "use": "@now/static" } + ], + "routes": [ + { "src": "/(.*)", "dest": "packages/app/build/$1" } + ] +}