mirror of
https://gitlab.com/moepoi/moepoi.dev.git
synced 2024-11-22 06:56:36 +01:00
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
|
import tailwind from 'tailwindcss'
|
||
|
import tailwindConfig from './tailwind.config.js'
|
||
|
import autoprefixer from 'autoprefixer'
|
||
|
|
||
|
export default {
|
||
|
plugins: [tailwind(tailwindConfig),autoprefixer]
|
||
|
}
|