10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
optimizePackageImports: ["@chakra-ui/react"]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|