mirror of
https://github.com/logseq/logseq.git
synced 2026-02-01 22:47:36 +00:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-import-ext-glob': {},
|
|
'postcss-import': {},
|
|
'tailwindcss/nesting': 'postcss-nested',
|
|
tailwindcss: {},
|
|
...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {})
|
|
}
|
|
}
|