Files
no-twitter-bot-stats/next.config.ts
Lucid 92675579b9
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 5m19s
remove standalone config
2025-12-06 17:07:54 -05:00

10 lines
176 B
TypeScript

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