Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anubhavsrivastava/5c44e0207d1d769b4c9318fc1112871b to your computer and use it in GitHub Desktop.
Save anubhavsrivastava/5c44e0207d1d769b4c9318fc1112871b to your computer and use it in GitHub Desktop.
const resources = performance.getEntriesByType("resource").map(r => ({
type: r.initiatorType,
url: r.name,
}));
console.table(resources);
@anubhavsrivastava
Copy link
Author

for explicit CSS resources

[...document.styleSheets].map(sheet => sheet.href).filter(Boolean);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment