list-of-lp/next.config.ts
2025-10-25 00:20:37 +02:00

9 lines
162 B
TypeScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
viewTransition: true,
},
reactCompiler: true,
};
module.exports = nextConfig;