Files
portfolio/next.config.ts
T
2026-06-10 23:44:38 +02:00

10 lines
173 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
compress: true,
poweredByHeader: false,
};
export default nextConfig;