Files
ballistic-builder/next.config.ts

11 lines
206 B
TypeScript
Raw Normal View History

2024-11-14 12:45:58 -05:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
2024-11-21 13:03:00 -05:00
experimental: {
optimizePackageImports: ["@chakra-ui/react"],
},
2024-11-14 12:45:58 -05:00
};
export default nextConfig;