Files
webwatcher/next.config.mjs
2026-07-27 09:32:21 +08:00

12 lines
206 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
experimental: {
serverComponentsExternalPackages: ["ssh2", "cpu-features"],
},
};
export default nextConfig;