mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-29 08:39:57 +02:00
migration to vueCLi and css to tailwind css 3 done
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user