import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // Run the app under /konfigurator when using SSR
  basePath: '/konfigurator',
  assetPrefix: '/konfigurator',
  images: {
    unoptimized: true,
    domains: ['tehnolink.net'],
  },
  experimental: {
    // Suppress CSS parsing warnings
  },
  transpilePackages: [],
  trailingSlash: false,
  // Disable strict mode for better cPanel compatibility
  reactStrictMode: false,
};

export default nextConfig;
