14 lines
198 B
JavaScript
Executable File
14 lines
198 B
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{html,js}'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
darkMode: 'class'
|
|
}
|
|
|