From b155c7a091a74b6f74d9a7826d1df6f9eaa9020a Mon Sep 17 00:00:00 2001 From: Sonia Appasamy Date: Wed, 29 Nov 2023 11:30:45 -0500 Subject: [PATCH] client/web: move postcss config into package.json A little cleanup. Updates #10261 Signed-off-by: Sonia Appasamy --- client/web/package.json | 6 ++++++ client/web/postcss.config.js | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 client/web/postcss.config.js diff --git a/client/web/package.json b/client/web/package.json index 81494e4d4..a545756df 100644 --- a/client/web/package.json +++ b/client/web/package.json @@ -59,5 +59,11 @@ "prettier": { "semi": false, "printWidth": 80 + }, + "postcss": { + "plugins": { + "tailwindcss": {}, + "autoprefixer": {} + } } } diff --git a/client/web/postcss.config.js b/client/web/postcss.config.js deleted file mode 100644 index 33ad091d2..000000000 --- a/client/web/postcss.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -}