mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./Resources/**/*.blade.php",
|
|
"./Resources/**/*.js",
|
|
"./Resources/**/*.vue"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|