2026-09-05 11:09:29 +05:30
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-09-07 22:42:39 +05:30
|
|
|
output: "export",
|
2026-09-09 10:32:54 +05:30
|
|
|
trailingSlash: true,
|
2026-09-07 22:42:39 +05:30
|
|
|
images: {
|
|
|
|
|
unoptimized: true,
|
|
|
|
|
},
|
2026-09-05 11:09:29 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|