front_gestalt/next.config.ts
2025-01-28 13:37:53 +03:00

14 lines
197 B
TypeScript

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