Files
xteink-flasher/next.config.ts
T
2025-11-20 22:30:37 +11:00

11 lines
201 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactCompiler: true,
experimental: {
optimizePackageImports: ['@chakra-ui/react'],
},
};
export default nextConfig;