mirror of
https://github.com/logseq/logseq.git
synced 2026-05-01 17:36:33 +00:00
16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-import': {},
|
|
'postcss-nested': {},
|
|
'postcss-import-ext-glob': {},
|
|
'tailwindcss/nesting': {},
|
|
tailwindcss: {
|
|
content: [
|
|
'./**/*.jsx',
|
|
'../../apps/**/*.{js,jsx,ts,tsx}',
|
|
]
|
|
},
|
|
autoprefixer: {},
|
|
},
|
|
}
|