Your Worker exceeded the size limit of 1 MiB
How? I tried already quite a few thing in my my nextjs 14 app. This is the app:

export default function Home() {
return null;
// return <Client />;
}
// import Client from "./client";
// import dynamic from "next/dynamic";
// const Client = dynamic(() => import("./client").then((mod) => mod.Client), {
// loading: () => <p>Loading...</p>,
// });