Files
NwBlog/next.config.ts
2025-01-22 12:36:05 +03:00

11 lines
202 B
TypeScript

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