From 3870a54d2e49961fb2e7044ad2b9d9013be7f95b Mon Sep 17 00:00:00 2001 From: Sean Norwood Date: Sun, 3 Apr 2022 00:28:12 +0000 Subject: [PATCH] chore: enable streaming ssr --- tubearchivist/www/next.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tubearchivist/www/next.config.js b/tubearchivist/www/next.config.js index a843cbe..5493c33 100644 --- a/tubearchivist/www/next.config.js +++ b/tubearchivist/www/next.config.js @@ -1,6 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + experimental: { + runtime: "nodejs", + }, reactStrictMode: true, -} +}; -module.exports = nextConfig +module.exports = nextConfig;