mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 11: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 = {
|
||||
const nextConfig: import("next").NextConfig = {
|
||||
experimental: {
|
||||
viewTransition: true,
|
||||
},
|
||||
typescript: {
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
reactCompiler: true,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue