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

30
vite.config.js Normal file
View File

@@ -0,0 +1,30 @@
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
import { resolve } from "path"
export default defineConfig({
plugins: [vue()],
base: process.env.NODE_ENV === "production" ? "/ai-portfolio-chat/" : "/",
resolve: {
alias: {
"@": resolve(__dirname, "src"),
},
},
build: {
outDir: "dist",
assetsDir: "assets",
sourcemap: false,
rollupOptions: {
output: {
manualChunks: {
vendor: ["vue"],
icons: ["lucide-vue-next"],
},
},
},
},
server: {
port: 3000,
open: true,
},
})