mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 22:59:10 +00:00
3a27f627df
Co-authored-by: bluwy <bjornlu.dev@gmail.com> Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com>
12 lines
227 B
TypeScript
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: {},
|
|
},
|
|
}
|