2026-07-26 11:27:21 +07:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-08-07 10:44:03 +07:00
|
|
|
output: "standalone",
|
2026-07-26 11:27:21 +07:00
|
|
|
trailingSlash: true,
|
|
|
|
|
};
|
|
|
|
|
|
2026-08-15 20:03:55 +07:00
|
|
|
export default nextConfig;
|