9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactCompiler: true,
|
|
output: "standalone"
|
|
};
|
|
|
|
export default nextConfig;
|