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