From 54bbc06bd84437c6b38e2f6c57060f21a8318720 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Sun, 19 Feb 2023 14:08:33 +0100 Subject: . --- postcss.config.cjs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'postcss.config.cjs') diff --git a/postcss.config.cjs b/postcss.config.cjs index fe10e55..0f88ec5 100644 --- a/postcss.config.cjs +++ b/postcss.config.cjs @@ -1,13 +1,8 @@ -const tailwindcss = require('tailwindcss'); -const autoprefixer = require('autoprefixer'); +const tailwindcss = require("tailwindcss"); +const autoprefixer = require("autoprefixer"); const config = { - plugins: [ - //Some plugins, like tailwindcss/nesting, need to run before Tailwind, - tailwindcss(), - //But others, like autoprefixer, need to run after, - autoprefixer - ] + plugins: [tailwindcss(), autoprefixer()], }; module.exports = config; -- cgit v1.3