Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubik committed Dec 10, 2024
1 parent b8bdb55 commit 8805207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/_document.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ CustomDocument.getInitialProps = async (ctx) => {
</html>
`;
const label = `generating critical CSS for ${ctx.pathname}`;
console.time(label);
console.time(label); // eslint-disable-line
criticalCss = dropcss({
css,
html
}).css;
console.timeEnd(label);
console.timeEnd(label); // eslint-disable-line
}
}

Expand Down

0 comments on commit 8805207

Please sign in to comment.