feat(UI): add PrimeVue and TailwindCSS for UI components

This commit is contained in:
2026-05-14 23:48:10 +02:00
parent 970a38153e
commit ec09713572
7 changed files with 548 additions and 12 deletions

View File

@@ -2,10 +2,11 @@ import * as path from 'path';
import vue from '@vitejs/plugin-vue';
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
plugins: [vue(), tailwindcss()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),