22 lines
396 B
JavaScript
22 lines
396 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./components/**/*.{js,vue,ts}",
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./content/**/*.mdc",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./nuxt.config.{js,ts}",
|
|
"./app.vue",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
'xs': '512px',
|
|
'3xl': '1792px'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|