import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  output: "standalone",

  compress: true,
  poweredByHeader: false,

  images: {
    formats: ["image/webp"],
    minimumCacheTTL: 31536000,
  },
};

export default nextConfig;