8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
/* config options here */
|
|
reactCompiler: true,
|
|
};
|
|
|
|
export default nextConfig;
|