mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-08 13:55:36 +02: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: []
|
|
};
|