mirror of
https://github.com/crosspoint-reader/xteink-flasher.git
synced 2026-08-13 14:19:44 -07:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactCompiler: true,
|
|
experimental: {
|
|
optimizePackageImports: ['@chakra-ui/react'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|