diff options
Diffstat (limited to 'apps/memory-graph-playground/next.config.ts')
| -rw-r--r-- | apps/memory-graph-playground/next.config.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/memory-graph-playground/next.config.ts b/apps/memory-graph-playground/next.config.ts new file mode 100644 index 00000000..66e15661 --- /dev/null +++ b/apps/memory-graph-playground/next.config.ts @@ -0,0 +1,8 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ + reactCompiler: true, +}; + +export default nextConfig; |