Files
databasus/next.config.ts
2025-11-09 18:25:44 +03:00

12 lines
302 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "export", // Enable static exports for GitHub Pages
trailingSlash: true, // Ensures proper routing on GitHub Pages
images: {
unoptimized: true, // Required for static export
},
};
export default nextConfig;