Initial functional version of the portfolio chatbot site
Some checks failed
Deploy to GitHub Pages / build-and-deploy (push) Has been cancelled

This commit is contained in:
2025-07-22 08:06:10 +02:00
commit 9eca12ebca
23 changed files with 5069 additions and 0 deletions

12
src/main.js Normal file
View File

@@ -0,0 +1,12 @@
import { createApp } from "vue"
import App from "./App.vue"
import "./style.css"
const app = createApp(App)
// Global error handler
app.config.errorHandler = (err, vm, info) => {
console.error("Global error:", err, info)
}
app.mount("#app")