diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 07:22:36 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 07:22:36 -0400 |
| commit | 59067695f934184c7e6efaa4fc89fbde2f27a7cb (patch) | |
| tree | aa0673196256ec61544b6acbc3471a81516b5f20 /postcss.config.cjs | |
| parent | b3fdc004706a1501b32372747abc1f4f4b7dd367 (diff) | |
initial migration, app runs
Diffstat (limited to 'postcss.config.cjs')
| -rw-r--r-- | postcss.config.cjs | 13 |
1 files changed, 13 insertions, 0 deletions
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; |
