From fcacda74cba31e10aa66157d1a6c61aaf4b8151b Mon Sep 17 00:00:00 2001 From: wommy Date: Sun, 15 Sep 2024 18:29:23 -0400 Subject: [PATCH] added postcssOptions to remove npm warning --- client/nuxt.config.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/client/nuxt.config.js b/client/nuxt.config.js index 7dde5572..0bca2a14 100644 --- a/client/nuxt.config.js +++ b/client/nuxt.config.js @@ -129,10 +129,12 @@ module.exports = { // Build Configuration: https://go.nuxtjs.dev/config-build build: { postcss: { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, + postcssOptions: { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + } + } } }, watchers: {