import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  output: "standalone",
  reactStrictMode: true,
  // node-ssh -> ssh2 có native .node binary, không bundle qua webpack được.
  serverExternalPackages: ["ssh2", "node-ssh", "cpu-features"],
  experimental: {
    serverActions: { bodySizeLimit: "2mb" },
  },
};

export default nextConfig;
