20 lines
398 B
JavaScript
20 lines
398 B
JavaScript
import flowbitePlugin from "flowbite/plugin";
|
|
import flowbiteTypography from 'flowbite-typography';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./node_modules/flowbite/**/*.js',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
flowbitePlugin,
|
|
flowbiteTypography,
|
|
],
|
|
|
|
};
|