From d11bdcfeaf8b1305f8b6c8898578ad232e0c7a5b Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Mon, 29 Sep 2025 19:17:41 -0400 Subject: [PATCH] Simplify TailwindCSS config: remove PostCSS plugin and use standard Nuxt 4 integration --- nuxt.config.ts | 3 --- package.json | 3 +-- postcss.config.js | 6 ------ 3 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 postcss.config.js diff --git a/nuxt.config.ts b/nuxt.config.ts index ff6c239..5e21801 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -21,9 +21,6 @@ export default defineNuxtConfig({ wasm: true } }, - tailwindcss: { - cssPath: '~/assets/css/main.css' - }, app: { head: { link: [ diff --git a/package.json b/package.json index 9cbe13d..69bc47b 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,7 @@ "qrcode": "^1.5.4", "jose": "^5.3.0", "date-fns": "^3.6.0", - "bcrypt": "^5.1.1", - "@tailwindcss/postcss": "^4.0.0" + "bcrypt": "^5.1.1" }, "devDependencies": { "typescript": "^5.4.0", diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 668a5b9..0000000 --- a/postcss.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - plugins: { - '@tailwindcss/postcss': {}, - autoprefixer: {}, - }, -}