Files
agentic_security/ui/src/main.js
T
2025-02-17 16:03:06 +02:00

12 lines
451 B
JavaScript

import { createApp } from 'vue'
import App from './App.vue' // Create App.vue (see next step)
import '../public/base.js' // If you have this file, move it to src/assets
import '../public/telemetry.js' // Move to src/assets
import lucide from 'lucide' // Import lucide if you are using it
const app = createApp(App)
app.mount('#vue-app') // Change #vue-app to #app
app.config.globalProperties.$lucide = lucide
//lucide.createIcons(); // Create icons