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:
parent
b27e3655d1
commit
82acb354ca
9 changed files with 975 additions and 5 deletions
|
|
@ -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)),
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue