how to resolve lighthouse issue “Serve static assets with an efficient cache policy”

Hi as per the title i am trying to cache for SSR pages and below are the approach i’ve already tried but still getting issue in Lighthouse.
Lighthouse Report

export const getServerSideProps = async context => { context.res.setHeader( 'Cache-Control', 'public, maxage=10, stale-while-revalidate=59' ) const baseProps = await basePageServerSide(context, ROUTES.HOMEPAGE); return baseProps }

Please let me know if there are any other approach i can use to resolve this.

i tried caching using basepageServerSide