8 primevue install (#9)

* Added PrimeVue with TailwindCSS support and modified Homepage to test the changes.

* Configured vitest to use PrimeVue and wrote a quick test for home page
This commit is contained in:
Liviu Burcusel 2025-10-26 19:54:14 +01:00 committed by GitHub
parent b27e3655d1
commit 82acb354ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 975 additions and 5 deletions

View file

@ -1,6 +1,6 @@
import { defineConfig } from "vitest/config";
import vue from "@vitejs/plugin-vue";
import { resolve } from "path";
import { fileURLToPath, URL } from "node:url";
export default defineConfig({
plugins: [vue()],
@ -14,6 +14,7 @@ export default defineConfig({
reporter: ["text", "html", "lcov"],
clean: true,
cleanOnRerun: true,
include: ["**/*.{js,jsx,ts,tsx,vue}"],
exclude: [
"node_modules/**",
"dist/**",
@ -37,8 +38,8 @@ export default defineConfig({
},
resolve: {
alias: {
"~": resolve(__dirname, "./app"),
"@": resolve(__dirname, "./app"),
"~": fileURLToPath(new URL("./", import.meta.url)),
"@": fileURLToPath(new URL("./", import.meta.url)),
},
},
});