mirror of
https://github.com/logseq/logseq.git
synced 2026-04-25 22:54:48 +00:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
module.exports = (ctx) => ({
|
|
plugins: [
|
|
require('postcss-nested'),
|
|
require('tailwindcss')('tailwind.config.js'),
|
|
ctx.env === 'production' ? require('cssnano')({ preset: 'default' }) : null,
|
|
],
|
|
})
|