Files
Greenlens/greenlns-landing/next.config.ts
2026-03-16 21:31:46 +01:00

11 lines
169 B
TypeScript

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