import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  basePath: "/calculadora",
  images: {
    unoptimized: true,
  },
};

export default nextConfig;
