mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
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:
parent
9fad47fc65
commit
d957b3971f
1 changed files with 4 additions and 2 deletions
|
|
@ -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,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue