13 lines
255 B
JavaScript
Vendored
13 lines
255 B
JavaScript
Vendored
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./public/index.html",
|
|
"./resources/**/*.{vue,js}",
|
|
"./resources/views/**/*.blade.php"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|