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>
18 lines
420 B
TypeScript
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
|