From 59067695f934184c7e6efaa4fc89fbde2f27a7cb Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Thu, 21 Jul 2022 07:22:36 -0400 Subject: initial migration, app runs --- postcss.config.cjs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 postcss.config.cjs (limited to 'postcss.config.cjs') diff --git a/postcss.config.cjs b/postcss.config.cjs new file mode 100644 index 0000000..e48cff5 --- /dev/null +++ b/postcss.config.cjs @@ -0,0 +1,13 @@ +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, + ], +}; + +module.exports = config; -- cgit v1.2.3