mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-07 16:44:27 +01:00
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ['class'],
|
|
content: ['./src/**/*.{js,jsx}'],
|
|
prefix: '',
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
};
|