Files
Greenlens/greenlns-landing/next.config.ts
2026-04-02 11:39:57 +02:00

15 lines
250 B
TypeScript

import path from 'node:path'
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
images: {
unoptimized: true,
},
turbopack: {
root: path.join(__dirname),
},
};
export default nextConfig;