From b040777ac5cbd42011578b11967668b6e813941e Mon Sep 17 00:00:00 2001 From: Jakub Kotek Date: Tue, 13 Mar 2018 13:49:38 +0100 Subject: [PATCH] Remove ignored postcss options Info about ignoring the postcss option when the postcss.config.js file is present. https://nuxtjs.org/api/configuration-build#postcss --- examples/tailwindcss/nuxt.config.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/tailwindcss/nuxt.config.js b/examples/tailwindcss/nuxt.config.js index c25eb8e4db..7550d05a97 100644 --- a/examples/tailwindcss/nuxt.config.js +++ b/examples/tailwindcss/nuxt.config.js @@ -1,9 +1,3 @@ module.exports = { - build: { - postcss: [ - require('tailwindcss')('./tailwind.js'), - require('autoprefixer') - ] - }, css: ['~/assets/css/tailwind.css'] }