Files
docqube_lp/next.config.ts
T

12 lines
188 B
TypeScript
Raw Normal View History

2026-09-05 11:09:29 +05:30
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "export",
trailingSlash: true,
images: {
unoptimized: true,
},
2026-09-05 11:09:29 +05:30
};
export default nextConfig;