Files
gabrielkaszewski-next/next.config.ts
Gabriel Kaszewski 369cd75bfe
Some checks failed
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Failing after 7s
static export + nginx, drop runtime server
~800MiB -> ~5MiB RAM
2026-08-08 15:51:24 +02:00

11 lines
165 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "export",
images: {
unoptimized: true,
},
};
export default nextConfig;