Track and monitor your Vue application with Alerty
Alerty SDK is a powerful monitoring tool designed, built, and priced for the needs of developers and founders. It helps you monitor your applications, track errors, and ensure your software runs smoothly.
In a Vue application, initialize Alerty SDK in your main entry file, typically src/index.js:
Copy
import "./assets/main.css";import { createApp } from "vue";import App from "./App.vue";import * as Alerty from "@alerty/vue";Alerty.configure({ dsn: "__YOUR_DSN__",});createApp(App).mount("#app");