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.
This commit is contained in:
m4x809 2025-10-25 03:28:20 +02:00
parent 9fad47fc65
commit d957b3971f
Signed by: m4x809
SSH key fingerprint: SHA256:YCoFF78p2DUP94EnCScqLwldjkKDwdKSZq3r8p/6EiU

View file

@ -1,8 +1,10 @@
/** @type {import('next').NextConfig} */ const nextConfig: import("next").NextConfig = {
const nextConfig = {
experimental: { experimental: {
viewTransition: true, viewTransition: true,
}, },
typescript: {
ignoreBuildErrors: true,
},
reactCompiler: true, reactCompiler: true,
}; };