13 lines
205 B
TypeScript
13 lines
205 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default {
|
|
content: [
|
|
'./resources/views/**/*.edge',
|
|
'./inertia/**/*.vue',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config
|