front_gestalt/next.config.ts
2025-01-28 16:09:09 +03:00

10 lines
174 B
TypeScript

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