Files
domrichardson ead8219f3b
Build and Push App Image / build-and-push (push) Successful in 3m38s
new frontend
2026-06-17 12:08:20 +01:00

13 lines
220 B
TypeScript

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