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;