list-of-lp/next.config.ts
m4x809 d957b3971f
Enhance Next.js configuration with TypeScript support
- Updated next.config.ts to define the configuration using TypeScript for better type safety.
- Added TypeScript option to ignore build errors, facilitating smoother development.
2025-10-25 03:28:20 +02:00

11 lines
194 B
TypeScript

const nextConfig: import("next").NextConfig = {
experimental: {
viewTransition: true,
},
typescript: {
ignoreBuildErrors: true,
},
reactCompiler: true,
};
module.exports = nextConfig;