12 lines
307 B
TypeScript
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;
|