mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-07 16:44:27 +01:00
117726a01f
* feat(#BRU-11) - tailwindcss v3 upgrade * feat(#BRU-11) - lock file update to fix PR checks
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: []
|
|
};
|