mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-23 00:13:24 +01:00
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: []
|
||
|
};
|