Vitepress Detector
Check any public website to see whether it uses Vitepress.
Public signal scan
Fast lookup
No signup required
Scan a website
Enter a URL and Stackcrawler will inspect public technology signals.
Websites using Vitepress
Browse real website examples detected with Vitepress.
View examplesMore Static Site Generator detectors
Compare related tools and identify the wider stack behind a website.
Browse detectorsWhat we check
Stackcrawler looks for public page markers, scripts, platform fingerprints, metadata, and other visible implementation clues.
How can you detect if a website uses VitePress?
Detecting if a website uses VitePress involves identifying specific markers characteristic of VitePress applications.
Here’s a step-by-step guide on how to do it:
- Open the Page Source: Right-click on the webpage and select “View Page Source” or press
Ctrl+U(Windows) orCmd+Option+U(Mac) to open the page source code. - Search for VitePress Markers: Use
Ctrl+F(Windows) orCmd+F(Mac) to open the search function and look for the following keywords:VitePressApp: This is a common identifier in VitePress applications. Look for something likewindow.VitePressAppin the scripts section.vitepress: This keyword is often present in the script files or URLs. For instance, look for<script src="https://cdn.jsdelivr.net/npm/vitepress"></script>
- Check for VitePress-Specific HTML Structure: VitePress generates specific HTML elements and classes. Look for:
<div class="vp-content">: This class is typically generated by VitePress.<header class="vp-header">: A common header structure in VitePress sites.
- Look for VitePress Configuration File: If you can access the website’s repository or documentation, look for a configuration file named
vitepress.config.js. This file contains settings specific to VitePress. - Inspect the JavaScript Loading Order: VitePress often prioritizes loading its own scripts. Use the browser’s developer tools (usually accessible via
F12or right-click and select “Inspect”) and check the “Network” tab for scripts loading from VitePress. - Examine the Meta Tags: VitePress may include specific meta tags indicating its use. Look for tags like
<meta name="description" content="VitePress v1.5.0">. - Look for VitePress Documentation Links: Many websites using VitePress provide documentation that often references VitePress-related links or resources. Look for mentions of
vitepressin any footer links.