Error monitoring for Replit apps
Your Replit app has real users now. This tells you the moment something breaks for them.The fast way: ask your AI tool
Replit Agent can install this for you, or you can paste it yourself.It will work out where the snippet goes, put it there, and check that it worked. If it gets stuck, the instructions tell it how to recover.Paste this into your chatInstall Vigil error monitoring in this app. Follow the instructions at https://vigill.dev/skill?key=vg_pub_YOUR_KEY exactly, then confirm installation succeeded.
The manual way
Paste this in the <head> of your main HTML file, or your framework’s root layout — usuallyindex.html, then redeploy.This key is meant to be public — it can only send errors in, never read anything out. Do not move it into an environment variable; static hosts have nothing to read one back at runtime.index.html — html<script src="https://vigill.dev/v.js" data-vigil-key="vg_pub_YOUR_KEY"></script>