mirror of
https://github.com/C4illin/ConvertX.git
synced 2026-09-13 10:24:49 +02:00
9 lines
250 B
JavaScript
9 lines
250 B
JavaScript
import autoprefixer from "autoprefixer";
|
|
import cssnano from "cssnano";
|
|
import tailwind from "tailwindcss";
|
|
import tailwindConfig from "./tailwind.config.js";
|
|
|
|
export default {
|
|
plugins: [autoprefixer, tailwind(tailwindConfig), cssnano],
|
|
};
|