vite/playground/tailwind/postcss.config.ts
Divyansh Singh 3a27f627df
chore(deps)!: update postcss-load-config to v6 (#15235)
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com>
2024-10-28 11:53:16 +09:00

12 lines
227 B
TypeScript

// postcss.config.ts
import { fileURLToPath } from 'node:url'
export default {
plugins: {
tailwindcss: {
config: fileURLToPath(new URL('./tailwind.config.ts', import.meta.url)),
},
autoprefixer: {},
},
}