From bdd56b52d07e98097a1d493c2ae94743c1b6bf5c Mon Sep 17 00:00:00 2001 From: Defectink Date: Fri, 22 Apr 2022 11:29:10 +0800 Subject: [PATCH] Enable concurrent --- next.config.mjs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index de81d1f..ff49fac 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -21,12 +21,9 @@ const composedConfig = composePlugins([ /** @type {import('next').NextConfig} */ { reactStrictMode: true, - // experimental: { - // reactMode: 'concurrent', - // }, experimental: { - // runtime: 'nodejs', - // reactMode: 'concurrent', + runtime: 'nodejs', + reactMode: 'concurrent', outputStandalone: true, }, pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],