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