Refactor App component layout and integrate Tailwind CSS for styling
Deploy Portfolio / deploy (push) Successful in 24s

This commit is contained in:
2026-05-10 12:23:18 +02:00
parent 1910f58de6
commit 1f85034077
5 changed files with 318 additions and 269 deletions
+5 -5
View File
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react(), tailwindcss()],
});