From f5db419c91a5081c66559a7b7c3274e5af4bd7f1 Mon Sep 17 00:00:00 2001 From: Taylor AI Date: Mon, 15 Dec 2025 15:32:38 +0500 Subject: [PATCH] Fixed type issue in vite configuration --- vite.config.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 3ba562e..2fae6ca 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,6 @@ -import path from "node:path"; -import react from "@vitejs/plugin-react"; import tailwindcss from "@tailwindcss/vite"; +import react from "@vitejs/plugin-react"; +import path from "node:path"; import { PassThrough } from "stream"; import { defineConfig, type ViteDevServer } from "vite"; @@ -34,7 +34,6 @@ Object.keys(originalConsole).forEach((level) => { export default defineConfig({ plugins: [ - // @ts-expect-error - Tailwind plugin is causing type errors with vite v7. This is a known issue. tailwindcss(), react(), {