first commit

This commit is contained in:
2026-08-07 09:40:16 +03:30
commit 0c51b30059
37 changed files with 5146 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { NextConfig } from "next";
// خروجیِ ایستا (static export) که nginx زیرِ مسیرِ /panel/ سرو می‌کند.
const nextConfig: NextConfig = {
output: "export",
trailingSlash: true,
basePath: "/panel",
images: { unoptimized: true },
};
export default nextConfig;