import type { NextConfig } from "next"; const nextConfig: NextConfig = { transpilePackages: ["@multica/ui", "@multica/store"], headers: async () => [ { source: "/sw.js", headers: [ { key: "Cache-Control", value: "no-cache, no-store, must-revalidate", }, { key: "Content-Type", value: "application/javascript; charset=utf-8", }, ], }, ], }; export default nextConfig;