-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
41 lines (40 loc) · 973 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const disabledCss = {
'code::before': false,
'code::after': false,
pre: false,
code: false,
'pre code': false,
'code::before': false,
'code::after': false,
'blockquote p:first-of-type::before': false,
'blockquote p:last-of-type::after': false,
}
module.exports = {
content: [
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js',
'./app/javascript/**/*.tsx',
'./app/components/**/*.html.erb',
'./app/components/**/*.rb',
'./app/components/**/*.js',
'./node_modules/flowbite/**/*.js',
'./node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}'
],
plugins: [
require('@tailwindcss/typography'),
require('flowbite/plugin')
],
theme: {
extend: {
typography: {
DEFAULT: { css: disabledCss },
sm: { css: disabledCss },
lg: { css: disabledCss },
xl: { css: disabledCss },
'2xl': { css: disabledCss },
},
},
},
}