Files
oki-podcast-reader/postcss.config.cjs
T
2023-07-09 22:18:06 +01:00

12 lines
257 B
JavaScript

const config = {
plugins: {
'tailwindcss/nesting': {},
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss: {},
//But others, like autoprefixer, need to run after,
autoprefixer: {},
},
};
module.exports = config;