From 6fdc64b330d2939876985d9bac7a958dc04ae3a3 Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Thu, 13 Apr 2023 17:43:26 +0100 Subject: [PATCH] Added tailwindcssForms dependency --- daily-thought-frontend/package.json | 1 + daily-thought-frontend/tailwind.config.js | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/daily-thought-frontend/package.json b/daily-thought-frontend/package.json index 5b67dc29..a869b579 100644 --- a/daily-thought-frontend/package.json +++ b/daily-thought-frontend/package.json @@ -14,6 +14,7 @@ "next": "^13.2.4" }, "devDependencies": { + "@tailwindcss/forms": "^0.5.3", "@types/node": "18.15.0", "@types/react": "18.0.28", "autoprefixer": "^10.4.14", diff --git a/daily-thought-frontend/tailwind.config.js b/daily-thought-frontend/tailwind.config.js index 367d7575..437500d4 100644 --- a/daily-thought-frontend/tailwind.config.js +++ b/daily-thought-frontend/tailwind.config.js @@ -16,5 +16,7 @@ module.exports = { } }, }, - plugins: [], + plugins: [ + require('@tailwindcss/forms') + ], } -- GitLab