mirror of
https://github.com/DBNinjin/Ninjin.Web.v2.git
synced 2025-06-27 18:31:55 +00:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require('flowbite/plugin')]
|
|
};
|