From 96a150ea1137b2c97ee5b9057c79fe4e323465c9 Mon Sep 17 00:00:00 2001 From: Dylan Frankland Date: Sat, 29 Jun 2019 17:36:06 -0700 Subject: [PATCH] Add files to deploy to Now --- next.config.js | 3 +++ now.json | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 next.config.js create mode 100644 now.json diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..f900279 --- /dev/null +++ b/next.config.js @@ -0,0 +1,3 @@ +module.exports = { + target: 'serverless' +}; diff --git a/now.json b/now.json new file mode 100644 index 0000000..1754f0b --- /dev/null +++ b/now.json @@ -0,0 +1,4 @@ +{ + "version": 2, + "builds": [{ "src": "package.json", "use": "@now/next" }] +}