diff --git a/packages/content-handler/src/websites/raw-handler.ts b/packages/content-handler/src/websites/raw-handler.ts index bcbd6a10f..fb98decbc 100644 --- a/packages/content-handler/src/websites/raw-handler.ts +++ b/packages/content-handler/src/websites/raw-handler.ts @@ -10,7 +10,12 @@ export class RawContentHandler extends ContentHandler { shouldPreHandle(url: string): boolean { const u = new URL(url) - const hostnames = ['medium.com', 'fastcompany.com', 'fortelabs.com'] + const hostnames = [ + 'medium.com', + 'fastcompany.com', + 'fortelabs.com', + 'theverge.com', + ] return hostnames.some((h) => u.hostname.endsWith(h)) }