mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-22 09:25:53 +08:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
import tailwind from 'tailwindcss'
|
|
import autoprefixer from 'autoprefixer'
|
|
import tailwindConfig from './tailwind.config.js'
|
|
|
|
export default {
|
|
plugins: [
|
|
tailwind(tailwindConfig),
|
|
autoprefixer,
|
|
],
|
|
}
|