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