Files
lmgcitfy/next.config.ts
2026-02-11 21:05:26 +00:00

11 lines
206 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
experimental: {
optimizePackageImports: ["@chakra-ui/react"],
},
};
export default nextConfig;