list-of-lp/next.config.ts

10 lines
162 B
TypeScript
Raw Normal View History

2025-10-24 22:20:37 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
viewTransition: true,
},
reactCompiler: true,
};
module.exports = nextConfig;