front_gestalt/next.config.ts

10 lines
174 B
TypeScript
Raw Normal View History

2025-01-07 18:30:21 +03:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-01-28 16:09:09 +03:00
output: 'export',
2025-01-28 13:37:53 +03:00
images: {
unoptimized: true,
},
2025-01-07 18:30:21 +03:00
};
2025-01-28 16:09:09 +03:00
export default nextConfig;