mirror of
https://github.com/RoyalnetworkTR/turkanime-client.git
synced 2026-09-25 07:20:03 +03:00
Co-authored-by: barkeser2002 <45911502+barkeser2002@users.noreply.github.com>
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export', // Enable static export
|
|
images: {
|
|
unoptimized: true, // Required for static export
|
|
},
|
|
trailingSlash: true, // Add trailing slashes to URLs
|
|
};
|
|
|
|
export default nextConfig;
|