11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
|
import tailwind from "tailwindcss";
|
||
|
import autoprefixer from "autoprefixer";
|
||
|
/** @type {import('postcss-load-config').Config} */
|
||
|
const config = {
|
||
|
plugins: [
|
||
|
autoprefixer,
|
||
|
tailwind
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export default config
|