feat: add layout and sidebar components with navigation structure
Some checks failed
CI / lint (push) Failing after 7s
CI / test-backend (push) Has been skipped
CI / test-frontend (push) Has been skipped
CI / test-e2e (push) Has been skipped

chore: update dependencies and configuration for Tailwind CSS
docs: create components.json and skills-lock.json for project structure
This commit is contained in:
2026-02-22 19:35:25 +01:00
parent 0c9c408564
commit 9ed4437906
9 changed files with 504 additions and 148 deletions

View File

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