Skip to content

Commit

Permalink
fix(SLB-201): add cache buster to styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
pmelab committed Jan 24, 2024
1 parent ec503ef commit e4dccd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/website/gatsby-ssr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const onRenderBody: GatsbySSR['onRenderBody'] = ({
React.createElement('link', {
key: 'styles.css',
rel: 'stylesheet',
href: '/styles.css',
href: `/styles.css?t=${new Date().getTime()}`,
}),
]);
};

0 comments on commit e4dccd2

Please sign in to comment.