/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export', // Ensures proper static export
trailingSlash: true, // Optional: Ensures URLs have trailing slashes
};
module.exports = nextConfig;