mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
- Updated next.config.ts to define the configuration using TypeScript for better type safety. - Added TypeScript option to ignore build errors, facilitating smoother development.
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
const nextConfig: import("next").NextConfig = {
|
|
experimental: {
|
|
viewTransition: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
reactCompiler: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|