front_gestalt/next.config.ts

14 lines
197 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 13:37:53 +03:00
output: 'export'
};
module.exports = {
images: {
unoptimized: true,
},
2025-01-07 18:30:21 +03:00
};
export default nextConfig;