vite/playground/tailwind/tailwind.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

18 lines
420 B
TypeScript

import type { Config } from 'tailwindcss'
export default {
content: [
// Before editing this section, make sure no paths are matching with `/src/main.js`
// Look https://github.com/vitejs/vite/pull/6959 for more details
__dirname + '/src/{components,views}/**/*.js',
__dirname + '/src/main.js',
],
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
} satisfies Config