import type { NextConfig } from 'next'

const nextConfig: NextConfig = {
    /* config options here */
    // basePath: '/muhkam-ai',
    // assetPrefix: '/muhkam-ai',
    // output: 'export',
    trailingSlash: true,
    images: {
        unoptimized: true
        // loader: 'custom',
        // loaderFile: './imgixLoader.js'
    }
}

export default nextConfig
