mirror of
https://github.com/logseq/logseq.git
synced 2026-04-25 06:35:02 +00:00
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
module.exports = (ctx) => ({
|
|
plugins: [
|
|
require("autoprefixer"),
|
|
require("tailwindcss")("tailwind.config.js"),
|
|
ctx.env === "production" ? require("cssnano")({ preset: "default" }) : null,
|
|
],
|
|
});
|