Files
admin-panel-hokm/next.config.ts
T
2026-08-07 09:40:16 +03:30

12 lines
307 B
TypeScript

import type { NextConfig } from "next";
// خروجیِ ایستا (static export) که nginx زیرِ مسیرِ /panel/ سرو می‌کند.
const nextConfig: NextConfig = {
output: "export",
trailingSlash: true,
basePath: "/panel",
images: { unoptimized: true },
};
export default nextConfig;