mirror of
https://github.com/grassrootseconomics/farmstar-survey-ui.git
synced 2025-01-09 23:57:31 +01:00
23 lines
553 B
JavaScript
23 lines
553 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: [
|
||
|
"./components/**/*.{js,vue,ts}",
|
||
|
"./layouts/**/*.vue",
|
||
|
"./pages/**/*.vue",
|
||
|
"./plugins/**/*.{js,ts}",
|
||
|
"./nuxt.config.{js,ts}",
|
||
|
'./vueform.config.{js,ts}',
|
||
|
'./node_modules/@vueform/vueform/themes/tailwind/**/*.vue',
|
||
|
'./node_modules/@vueform/vueform/themes/tailwind/**/*.js',
|
||
|
'./node_modules/flowbite/**/*.{js,ts}'
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('flowbite/plugin'),
|
||
|
require('@vueform/vueform/tailwind')
|
||
|
],
|
||
|
}
|
||
|
|