[READ-ONLY] Mirror of https://github.com/mrgnw/ananas. learn multiple languages at once ananas.xcc.es
0

Configure Feed

Select the types of activity you want to include in your feed.

ananas / postcss.config.cjs
311 B 13 lines
1const tailwindcss = require('tailwindcss'); 2const autoprefixer = require('autoprefixer'); 3 4const config = { 5 plugins: [ 6 //Some plugins, like tailwindcss/nesting, need to run before Tailwind, 7 tailwindcss(), 8 //But others, like autoprefixer, need to run after, 9 autoprefixer 10 ] 11}; 12 13module.exports = config;