Files
ludikevent_crm/assets/app.js

28 lines
732 B
JavaScript
Raw Normal View History

import './app.scss'
import * as Turbo from "@hotwired/turbo"
// --- INITIALISATION SENTRY (En premier !) ---
Sentry.init({
dsn: "https://803814be6540031b1c37bf92ba9c0f79@sentry.esy-web.dev/24",
tunnel: "/sentry-tunnel",
sendDefaultPii: true,
integrations: [
Sentry.browserTracingIntegration(),
Sentry.replayIntegration()
],
tracesSampleRate: 1.0,
tracePropagationTargets: ["localhost", "esy-web.dev"], // Remplace par ton domaine réel
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0
});
// --- INITIALISATION DES COMPOSANTS APRÈS TURBO/CHARGEMENT ---
document.addEventListener('DOMContentLoaded', ()=>{
});
document.addEventListener('turbo:load', () => {
2025-12-09 17:11:08 +01:00
});