mirror of
https://github.com/logseq/logseq.git
synced 2026-02-01 22:47:36 +00:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
module.exports = (ctx) => ({
|
|
plugins: [
|
|
require('postcss-nested')({}),
|
|
require('postcss-import-ext-glob')({}),
|
|
require('postcss-import')({}),
|
|
require('tailwindcss')('tailwind.config.js'),
|
|
],
|
|
})
|