MBO-Tech-IT-Webseite/next.config.ts

9 lines
171 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["nodemailer"],
};
export default nextConfig;