app.craft.vin/postcss.config.cjs
Felix Baumgärtner b8ad31544e added aframe, nipplejs and skeleton (with custom theme)
changed adapter to static
2024-01-13 23:30:21 +01:00

13 lines
320 B
JavaScript

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;