mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 14:16:57 -04:00
27 lines
464 B
JavaScript
27 lines
464 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./Resources/**/*.blade.php",
|
|
"./Resources/**/*.js",
|
|
"./Resources/**/*.vue",
|
|
],
|
|
theme: {
|
|
screens: {
|
|
"sm": "640px",
|
|
"md": "768px",
|
|
"lg": "1024px",
|
|
"xl": "1280px",
|
|
"2xl": "1536px",
|
|
"3xl": "1920px",
|
|
"4xl": "2560px",
|
|
"5xl": "3480px",
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
}
|
|
|