logseq/postcss.config.js

8 lines
211 B
JavaScript
Raw Normal View History

2020-07-08 15:27:15 +00:00
module.exports = (ctx) => ({
plugins: [
require("autoprefixer"),
require("tailwindcss")("tailwind.config.js"),
ctx.env === "production" ? require("cssnano")({ preset: "default" }) : null,
2020-04-17 07:12:26 +00:00
],
});