Профиль хирургии

This commit is contained in:
brusnitsyn
2026-03-25 17:37:32 +09:00
parent 52a80ccd3b
commit f566ab96df
75 changed files with 3841 additions and 1009 deletions

View File

@@ -2,6 +2,7 @@ import { createApp, h } from 'vue'
import { createInertiaApp } from '@inertiajs/vue3'
import {createPinia} from "pinia";
import {setupNaiveDiscreteApi} from "./Plugins/NaiveUI.js";
import * as Sentry from "@sentry/vue";
import './bootstrap';
import '../css/app.css';
@@ -24,6 +25,22 @@ createInertiaApp({
setupNaiveDiscreteApi(vueApp)
// Sentry.init({
// vueApp,
// dsn: import.meta.env.VITE_SENTRY_DNS,
// // Setting this option to true will send default PII data to Sentry.
// // For example, automatic IP address collection on events
// sendDefaultPii: true,
// integrations: [
// Sentry.replayIntegration()
// ],
// // Session Replay
// replaysSessionSampleRate: 0, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
// replaysOnErrorSampleRate: 0.5, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.,
// // Logs
// enableLogs: true
// });
vueApp.mount(el)
},
}).then(r => {