mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-15 02:21:39 +00:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: [require('@tailwindcss/typography')]
|
||
|
};
|