mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-03 06:16:14 -04:00
18 lines
264 B
JavaScript
18 lines
264 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./Resources/assets/js/src/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./Resources/views/**/*.php'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: [
|
|
|
|
],
|
|
}
|
|
|