Antalya-Kitchener/next.config.ts
2026-04-03 12:59:46 +05:30

12 lines
188 B
TypeScript

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