aboutsummaryrefslogtreecommitdiff
path: root/apps/memory-graph-playground/next.config.ts
blob: 66e156612a02db9f438b3c362c6382009afa42d9 (plain) (blame)
1
2
3
4
5
6
7
8
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  reactCompiler: true,
};

export default nextConfig;