Files
portfolio/next.config.ts
lerko96 05a32492ac
All checks were successful
Build and Deploy / deploy (push) Successful in 1m0s
rebuild portfolio: Next.js 16, React 19, Tailwind v4, homelab page, CI/CD
2026-04-12 18:52:54 -04:00

12 lines
188 B
TypeScript

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